Skip to content

Commit

Permalink
bump: version 0.2.0b4 → 0.2.0b5
Browse files Browse the repository at this point in the history
  • Loading branch information
spwoodcock committed Sep 23, 2024
1 parent 72d7b4f commit 89daa25
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .cz.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.2.0b4"
version = "0.2.0b5"
version_files = [
".cz.toml:version",
"package.json:version",
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.2.0b5 (2024-09-23)

### Feat

- **exports**: export .d.ts files on build
- **docs-astro**: copy about page from docs -> new docs
- **docs/quick-start**: add react version info
- init docs astro

### Fix

- add setBasePath util function to allow changing icon import path
- **cva**: move to deps from devdeps

## 0.2.0b4 (2024-06-06)

### Feat
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hotosm/ui",
"version": "0.2.0b4",
"version": "0.2.0b5",
"description": "Shared UI components with HOT theming.",
"type": "module",
"engines": {
Expand Down

2 comments on commit 89daa25

@emi420
Copy link
Collaborator

@emi420 emi420 commented on 89daa25 Sep 30, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@spwoodcock I think the correct version should be 0.2.0-rc.5

https://semver.npmjs.com/#syntax-examples

@spwoodcock
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure that's the NPM convention for pre-release naming, but personally I disagree with it.

rc should be used for release candidates IMO, in line with many other tools and package managers (like pypi for example).

There is no specific convention for pre-release naming in the semver spec https://semver.org/

We use commitizen for most of the modules I have configured, which uses a for alpha b for beta, rc for release candidate. If you feel strongly about this, then we can of course deviate from this for this package, but I would prefer the consistency 👍

Please sign in to comment.