Skip to content

Commit

Permalink
chore(release): v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqiora committed Nov 22, 2022
1 parent 851c940 commit 913cc8a
Show file tree
Hide file tree
Showing 11 changed files with 119 additions and 60 deletions.
14 changes: 9 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.2.1](https://github.com/salsita/spicy-hooks/compare/v2.2.0...v2.2.1) (2022-10-14)
## [3.0.0](https://github.com/salsita/spicy-hooks/compare/v2.2.1...v3.0.0) (2022-11-22)

### ⚠ BREAKING CHANGES

### Bug Fixes
* **bin:** Remove release supporting tools (#44)

* **core:** Introduce React 18 compatibility ([#45](https://github.com/salsita/spicy-hooks/issues/45)) ([8ad98d4](https://github.com/salsita/spicy-hooks/commit/8ad98d4150a54096314bbfd810237efd22306be3))
### Features

* **bin:** Remove release supporting tools ([#44](https://github.com/salsita/spicy-hooks/issues/44)) ([4ad314a](https://github.com/salsita/spicy-hooks/commit/4ad314a6f83981bfc79cedf7df608d4c939a0353)) by @goce-cz
* Require rxjs 7.5, update all deps ([#47](https://github.com/salsita/spicy-hooks/issues/47)) ([851c940](https://github.com/salsita/spicy-hooks/commit/851c94027351c3a79973b90cc3c556514d93f5b0)) by @yuqiora

## [2.2.1](https://github.com/salsita/spicy-hooks/compare/v2.2.0...v2.2.1) (2022-10-14)

### Bug Fixes

* **core:** Introduce React 18 compatibility ([#45](https://github.com/salsita/spicy-hooks/issues/45)) ([8ad98d4](https://github.com/salsita/spicy-hooks/commit/8ad98d4150a54096314bbfd810237efd22306be3))

# [2.2.0](https://github.com/salsita/spicy-hooks/compare/v2.1.2...v2.2.0) (2022-06-09)


### Bug Fixes

* Fix typing issue ([d26fbf3](https://github.com/salsita/spicy-hooks/commit/d26fbf3c094f84efcb3b34771dbcb2be277523b1))


### Features

* Support RxJS 7 ([#43](https://github.com/salsita/spicy-hooks/issues/43)) ([12b0384](https://github.com/salsita/spicy-hooks/commit/12b038415d35e34ce42d2f696cd79e05a06d6e9c))
72 changes: 69 additions & 3 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,82 @@
{
"version": "2.2.1",
"version": "3.0.0",
"npmClient": "yarn",
"useWorkspaces": true,
"ignoreChanges": ["**/*.spec.*"],
"ignoreChanges": [
"**/*.spec.*"
],
"command": {
"version": {
"message": "chore(release): %s",
"createRelease": "github",
"conventionalCommits": true,
"changelogIncludeCommitsClientLogin": " by @%l",
"changelogPreset": {
"name": "conventionalcommits"
"name": "conventionalcommits",
"issuePrefixes": [
"#"
],
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "feature",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "docs",
"section": "Documentation",
"hidden": true
},
{
"type": "style",
"section": "Styles",
"hidden": true
},
{
"type": "chore",
"section": "Miscellaneous Chores",
"hidden": true
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": true
},
{
"type": "test",
"section": "Tests",
"hidden": true
},
{
"type": "build",
"section": "Build System",
"hidden": true
},
{
"type": "ci",
"section": "Continuous Integration",
"hidden": true
}
],
"issueUrlFormat": "{{host}}/{{owner}}/{{repository}}/issues/{{id}}",
"commitUrlFormat": "{{host}}/{{owner}}/{{repository}}/commit/{{hash}}",
"compareUrlFormat": "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
"userUrlFormat": "{{host}}/{{user}}"
},
"push": true,
"syncWorkspaceLock": true
Expand Down
19 changes: 11 additions & 8 deletions packages/bin/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/salsita/spicy-hooks/compare/v2.1.2...v2.2.0) (2022-06-09)

## [3.0.0](https://github.com/salsita/spicy-hooks/compare/v2.2.1...v3.0.0) (2022-11-22)

### Bug Fixes

* Fix typing issue ([d26fbf3](https://github.com/salsita/spicy-hooks/commit/d26fbf3c094f84efcb3b34771dbcb2be277523b1))
### ⚠ BREAKING CHANGES

* **bin:** Remove release supporting tools (#44)

### Features

* Support RxJS 7 ([#43](https://github.com/salsita/spicy-hooks/issues/43)) ([12b0384](https://github.com/salsita/spicy-hooks/commit/12b038415d35e34ce42d2f696cd79e05a06d6e9c))
* **bin:** Remove release supporting tools ([#44](https://github.com/salsita/spicy-hooks/issues/44)) ([4ad314a](https://github.com/salsita/spicy-hooks/commit/4ad314a6f83981bfc79cedf7df608d4c939a0353)) by @goce-cz
* Require rxjs 7.5, update all deps ([#47](https://github.com/salsita/spicy-hooks/issues/47)) ([851c940](https://github.com/salsita/spicy-hooks/commit/851c94027351c3a79973b90cc3c556514d93f5b0)) by @yuqiora

# [2.2.0](https://github.com/salsita/spicy-hooks/compare/v2.1.2...v2.2.0) (2022-06-09)

### Bug Fixes

* Fix typing issue ([d26fbf3](https://github.com/salsita/spicy-hooks/commit/d26fbf3c094f84efcb3b34771dbcb2be277523b1))

### Features

* Support RxJS 7 ([#43](https://github.com/salsita/spicy-hooks/issues/43)) ([12b0384](https://github.com/salsita/spicy-hooks/commit/12b038415d35e34ce42d2f696cd79e05a06d6e9c))

## 2.1.1 (2021-09-14)

Expand Down Expand Up @@ -46,14 +51,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

- Group all compiled output in `lib` folder (#6) @goce-cz


## 0.1.0 (2020-10-05)

### Features / enhancements

- Allow to specify direct filename for a changelog (#5) @goce-cz


## 0.0.1 (2020-10-05)

### Features / enhancements
Expand Down
4 changes: 2 additions & 2 deletions packages/bin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spicy-hooks/bin",
"version": "2.2.0",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -12,7 +12,7 @@
"src"
],
"dependencies": {
"@spicy-hooks/utils": "^2.2.0",
"@spicy-hooks/utils": "^3.0.0",
"chalk": "^4.1.2",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
Expand Down
18 changes: 6 additions & 12 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.2.1](https://github.com/salsita/spicy-hooks/compare/v2.2.0...v2.2.1) (2022-10-14)


### Bug Fixes
## [3.0.0](https://github.com/salsita/spicy-hooks/compare/v2.2.1...v3.0.0) (2022-11-22)

* **core:** Introduce React 18 compatibility ([#45](https://github.com/salsita/spicy-hooks/issues/45)) ([8ad98d4](https://github.com/salsita/spicy-hooks/commit/8ad98d4150a54096314bbfd810237efd22306be3))
### Features

* Require rxjs 7.5, update all deps ([#47](https://github.com/salsita/spicy-hooks/issues/47)) ([851c940](https://github.com/salsita/spicy-hooks/commit/851c94027351c3a79973b90cc3c556514d93f5b0)) by @yuqiora

## [2.2.1](https://github.com/salsita/spicy-hooks/compare/v2.2.0...v2.2.1) (2022-10-14)

### Bug Fixes

* **core:** Introduce React 18 compatibility ([#45](https://github.com/salsita/spicy-hooks/issues/45)) ([8ad98d4](https://github.com/salsita/spicy-hooks/commit/8ad98d4150a54096314bbfd810237efd22306be3))

# [2.2.0](https://github.com/salsita/spicy-hooks/compare/v2.1.2...v2.2.0) (2022-06-09)


### Features

* Support RxJS 7 ([#43](https://github.com/salsita/spicy-hooks/issues/43)) ([12b0384](https://github.com/salsita/spicy-hooks/commit/12b038415d35e34ce42d2f696cd79e05a06d6e9c))





## 2.1.2 (2022-01-05)

### Bug fixes
Expand Down Expand Up @@ -52,14 +48,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

- Add `useProperty` (#30) @goce-cz


## 1.0.1 (2020-10-09)

### Bug fixes

- Remove labeled tuples for improved compatibility with older TS versions (#20) @goce-cz


## 1.0.0 (2020-10-09)

### Features / enhancements
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spicy-hooks/core",
"version": "2.2.1",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -14,7 +14,7 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@spicy-hooks/utils": "^2.2.0",
"@spicy-hooks/utils": "^3.0.0",
"tslib": "^2.4.1"
},
"peerDependencies": {
Expand Down
16 changes: 5 additions & 11 deletions packages/observables/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.2.1](https://github.com/salsita/spicy-hooks/compare/v2.2.0...v2.2.1) (2022-10-14)

**Note:** Version bump only for package @spicy-hooks/observables
## [3.0.0](https://github.com/salsita/spicy-hooks/compare/v2.2.1...v3.0.0) (2022-11-22)

### Features

* Require rxjs 7.5, update all deps ([#47](https://github.com/salsita/spicy-hooks/issues/47)) ([851c940](https://github.com/salsita/spicy-hooks/commit/851c94027351c3a79973b90cc3c556514d93f5b0)) by @yuqiora

## [2.2.1](https://github.com/salsita/spicy-hooks/compare/v2.2.0...v2.2.1) (2022-10-14)

**Note:** Version bump only for package @spicy-hooks/observables

# [2.2.0](https://github.com/salsita/spicy-hooks/compare/v2.1.2...v2.2.0) (2022-06-09)


### Features

* Support RxJS 7 ([#43](https://github.com/salsita/spicy-hooks/issues/43)) ([12b0384](https://github.com/salsita/spicy-hooks/commit/12b038415d35e34ce42d2f696cd79e05a06d6e9c))





## 2.1.2 (2022-01-05)

### Bug fixes
Expand All @@ -40,14 +37,12 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

- Use `Object.is` as the default equality function of `usePartialSnapshot` (#25) @goce-cz


## 1.0.1 (2020-10-09)

### Bug fixes

- Remove labeled tuples for improved compatibility with older TS versions (#20) @goce-cz


## 1.0.0 (2020-10-09)

### Breaking changes
Expand All @@ -63,7 +58,6 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

- Group all compiled output in `lib` folder (#6) @goce-cz


## 0.0.1 (2020-10-05)

## Features / enhancements
Expand Down
6 changes: 3 additions & 3 deletions packages/observables/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spicy-hooks/observables",
"version": "2.2.1",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
Expand All @@ -14,8 +14,8 @@
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"@spicy-hooks/core": "^2.2.1",
"@spicy-hooks/utils": "^2.2.0",
"@spicy-hooks/core": "^3.0.0",
"@spicy-hooks/utils": "^3.0.0",
"tslib": "^2.4.1"
},
"peerDependencies": {
Expand Down
12 changes: 5 additions & 7 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,36 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/salsita/spicy-hooks/compare/v2.1.2...v2.2.0) (2022-06-09)

## [3.0.0](https://github.com/salsita/spicy-hooks/compare/v2.2.1...v3.0.0) (2022-11-22)

### Features

* Support RxJS 7 ([#43](https://github.com/salsita/spicy-hooks/issues/43)) ([12b0384](https://github.com/salsita/spicy-hooks/commit/12b038415d35e34ce42d2f696cd79e05a06d6e9c))

* Require rxjs 7.5, update all deps ([#47](https://github.com/salsita/spicy-hooks/issues/47)) ([851c940](https://github.com/salsita/spicy-hooks/commit/851c94027351c3a79973b90cc3c556514d93f5b0)) by @yuqiora

# [2.2.0](https://github.com/salsita/spicy-hooks/compare/v2.1.2...v2.2.0) (2022-06-09)

### Features

* Support RxJS 7 ([#43](https://github.com/salsita/spicy-hooks/issues/43)) ([12b0384](https://github.com/salsita/spicy-hooks/commit/12b038415d35e34ce42d2f696cd79e05a06d6e9c))

## 2.1.2 (2022-05-01)

### Bug fixes

- Remove unnecessary dependency on React


## 2.1.0 (2021-06-17)

### Bug fixes

- Move `deferredFn` to observables as it depends on RxJS (#41) @goce-cz


## 2.0.1 (2020-11-11)

### Bug fixes

- Prevent `isShallowEqual` from choking on null (#32) @goce-cz


## 1.0.0 (2020-10-09)

### Features / enhancements
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spicy-hooks/utils",
"version": "2.2.0",
"version": "3.0.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit 913cc8a

Please sign in to comment.