Skip to content

Commit

Permalink
chore: release v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nickpalmer committed Aug 3, 2021
1 parent 1c0322c commit dcb906a
Show file tree
Hide file tree
Showing 12 changed files with 62 additions and 11 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/nick-codes/soldi.js/compare/v0.4.0...v0.4.1) (2021-08-03)


### Bug Fixes

* security alert against glob-parent ([627dd99](https://github.com/nick-codes/soldi.js/commit/627dd99714d85f0a666f3fb3f9bf3156be5d0dc6))





# [0.4.0](https://github.com/nick-codes/soldi.js/compare/v0.3.0...v0.4.0) (2021-08-02)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.4.0",
"version": "0.4.1",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
Expand Down
8 changes: 8 additions & 0 deletions packages/codemod/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/nick-codes/soldi.js/compare/v0.4.0...v0.4.1) (2021-08-03)

**Note:** Version bump only for package @soldi/codemod





# [0.4.0](https://github.com/nick-codes/soldi.js/compare/v0.3.0...v0.4.0) (2021-08-02)


Expand Down
2 changes: 1 addition & 1 deletion packages/codemod/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soldi/codemod",
"version": "0.4.0",
"version": "0.4.1",
"description": "Codemod's for updating Dindero v1 code to @soldi/dinero or @soldi/core",
"module": "index.mjs",
"main": "dist/soldi-codemod.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/nick-codes/soldi.js/compare/v0.4.0...v0.4.1) (2021-08-03)

**Note:** Version bump only for package @soldi/core





# [0.4.0](https://github.com/nick-codes/soldi.js/compare/v0.3.0...v0.4.0) (2021-08-02)

**Note:** Version bump only for package @soldi/core
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soldi/core",
"version": "0.4.0",
"version": "0.4.1",
"description": "A simple currency library",
"module": "index.mjs",
"main": "dist/soldi-core.js",
Expand Down
8 changes: 8 additions & 0 deletions packages/dinero/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/nick-codes/soldi.js/compare/v0.4.0...v0.4.1) (2021-08-03)

**Note:** Version bump only for package @soldi/dinero





# [0.4.0](https://github.com/nick-codes/soldi.js/compare/v0.3.0...v0.4.0) (2021-08-02)

**Note:** Version bump only for package @soldi/dinero
Expand Down
8 changes: 4 additions & 4 deletions packages/dinero/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soldi/dinero",
"version": "0.4.0",
"version": "0.4.1",
"description": "A Dinero v1 compatibility layer for Soldi",
"main": "dist/soldi-dinero.js",
"module": "index.mjs",
Expand All @@ -16,9 +16,9 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest ."
},
"dependencies": {
"@soldi/core": "0.4.0",
"@soldi/format-dinero": "0.4.0",
"@soldi/locale": "0.4.0"
"@soldi/core": "0.4.1",
"@soldi/format-dinero": "0.4.1",
"@soldi/locale": "0.4.1"
},
"devDependencies": {
"jest": "27.0.6",
Expand Down
8 changes: 8 additions & 0 deletions packages/format-dinero/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/nick-codes/soldi.js/compare/v0.4.0...v0.4.1) (2021-08-03)

**Note:** Version bump only for package @soldi/format-dinero





# [0.4.0](https://github.com/nick-codes/soldi.js/compare/v0.3.0...v0.4.0) (2021-08-02)

**Note:** Version bump only for package @soldi/format-dinero
Expand Down
4 changes: 2 additions & 2 deletions packages/format-dinero/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soldi/format-dinero",
"version": "0.4.0",
"version": "0.4.1",
"description": "A formating layer for soldi that is compatible with Dinero v1 toFormat",
"main": "dist/soldi-format-dinero.js",
"module": "index.mjs",
Expand All @@ -16,7 +16,7 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest ."
},
"dependencies": {
"@soldi/core": "0.4.0"
"@soldi/core": "0.4.1"
},
"devDependencies": {
"jest": "27.0.6",
Expand Down
8 changes: 8 additions & 0 deletions packages/locale/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.4.1](https://github.com/nick-codes/soldi.js/compare/v0.4.0...v0.4.1) (2021-08-03)

**Note:** Version bump only for package @soldi/locale





# [0.4.0](https://github.com/nick-codes/soldi.js/compare/v0.3.0...v0.4.0) (2021-08-02)

**Note:** Version bump only for package @soldi/locale
Expand Down
4 changes: 2 additions & 2 deletions packages/locale/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@soldi/locale",
"version": "0.4.0",
"version": "0.4.1",
"description": "An extension layer for Soldi that adds getLocale and setLocale",
"main": "dist/soldi-locale.js",
"module": "index.mjs",
Expand All @@ -16,7 +16,7 @@
"test": "NODE_OPTIONS=--experimental-vm-modules jest ."
},
"dependencies": {
"@soldi/core": "0.4.0"
"@soldi/core": "0.4.1"
},
"devDependencies": {
"jest": "27.0.6",
Expand Down

0 comments on commit dcb906a

Please sign in to comment.