Skip to content

Commit 40ca8ae

Browse files
chore(release): 2.0.0 (#97)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ed0e933 commit 40ca8ae

File tree

16 files changed

+117
-8
lines changed

16 files changed

+117
-8
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## [2.0.0](https://github.com/TrigenSoftware/simple-release/compare/v1.0.0...v2.0.0) (2025-06-05)
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* **simple-github-release:** Now node 18 is minimal required version
11+
12+
### Features
13+
14+
* **config:** a simple-release config loader ([97965d2](https://github.com/TrigenSoftware/simple-release/commit/97965d29ab28d40836cf5ef3d5e4e04f908e7037))
15+
* **core:** a simple tool to release projects with monorepo support ([d695be5](https://github.com/TrigenSoftware/simple-release/commit/d695be51e9e0fdf12acfb86a8d0cefe802012271))
16+
* **github-action:** a simple-release api for github action ([#95](https://github.com/TrigenSoftware/simple-release/issues/95)) ([6842da1](https://github.com/TrigenSoftware/simple-release/commit/6842da1a008f9bd921046c1aadf24e3f45eb3a51))
17+
* **github-release:** a github release addon for simple-release ([e648f45](https://github.com/TrigenSoftware/simple-release/commit/e648f45ce2005b2ec90824217951d5f7d152976f))
18+
* **github:** a github addon for simple-release ([71430be](https://github.com/TrigenSoftware/simple-release/commit/71430be20ab9aa680f89d4d36b6dec7f76df4a82))
19+
* **npm:** a npm addon for simple-release ([5cc6e7a](https://github.com/TrigenSoftware/simple-release/commit/5cc6e7a94687f480a315becd8d1d3fd10e8ec08a))
20+
* **pnpm:** a pnpm addon for simple-release ([17606de](https://github.com/TrigenSoftware/simple-release/commit/17606de0172cccac9d5227036c8594284a59f102))
21+
* **simple-github-release:** add tag cli option ([9cf268f](https://github.com/TrigenSoftware/simple-release/commit/9cf268f22fe8a68055be213b211d8268ce69a3f3))
22+
* **simple-github-release:** drop git-url-parse dependency in favor of @simple-libs/hosted-git-info ([f022984](https://github.com/TrigenSoftware/simple-release/commit/f02298413e0b9c084a6d3579bc474a7364dda5cc))
23+
* **simple-github-release:** upgrade node minimal version to 18 ([#82](https://github.com/TrigenSoftware/simple-release/issues/82)) ([c248fba](https://github.com/TrigenSoftware/simple-release/commit/c248fba43f1d5fe6a296711af88bcf4370a7fc3e))
24+
25+
### Bug Fixes
26+
27+
* badge url in readme ([2ac1202](https://github.com/TrigenSoftware/simple-release/commit/2ac12021d4d90e67133841645321525ef6a3716d))
28+
* **deps:** update dependency @octokit/rest to v19 ([#24](https://github.com/TrigenSoftware/simple-release/issues/24)) ([bd8ee16](https://github.com/TrigenSoftware/simple-release/commit/bd8ee168cd9f978a4489d858f44e736eeef9d024))
29+
* **deps:** update dependency @octokit/rest to v20 ([#43](https://github.com/TrigenSoftware/simple-release/issues/43)) ([a71db82](https://github.com/TrigenSoftware/simple-release/commit/a71db82a2fe70163b0e992a3c38769ca09129c34))
30+
* **deps:** update dependency git-url-parse to v13 ([#31](https://github.com/TrigenSoftware/simple-release/issues/31)) ([0dcfdc4](https://github.com/TrigenSoftware/simple-release/commit/0dcfdc43b3b41328c80e413c40b6eccff03216e8))
31+
* **deps:** update dependency lilconfig to v3 ([#60](https://github.com/TrigenSoftware/simple-release/issues/60)) ([b475e8f](https://github.com/TrigenSoftware/simple-release/commit/b475e8f9d9ae439c07c48248e7ae891e609436ca))
32+
* **deps:** update dependency open to v10 ([#66](https://github.com/TrigenSoftware/simple-release/issues/66)) ([d14c94b](https://github.com/TrigenSoftware/simple-release/commit/d14c94b464ec50c4b31b6cdf3b1a45fcb399da73))
33+
* **deps:** update dependency open to v9 ([#37](https://github.com/TrigenSoftware/simple-release/issues/37)) ([fe212fb](https://github.com/TrigenSoftware/simple-release/commit/fe212fb4ff0179455959d84ccccdc828e778f61b))

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "simple-release-tools",
33
"type": "module",
44
"private": true,
5-
"version": "0.0.0",
5+
"version": "2.0.0",
66
"description": "A simple tools to automate releases.",
77
"author": "dangreen",
88
"license": "MIT",

packages/config/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## [2.0.0](https://github.com/TrigenSoftware/simple-release/compare/v1.0.0...v2.0.0) (2025-06-05)
7+
8+
### Features
9+
10+
* a simple-release config loader ([97965d2](https://github.com/TrigenSoftware/simple-release/commit/97965d29ab28d40836cf5ef3d5e4e04f908e7037))

packages/config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@simple-release/config",
33
"type": "module",
4-
"version": "1.0.0",
4+
"version": "2.0.0",
55
"description": "A simple-release config loader.",
66
"author": {
77
"name": "Dan Onoshko",

packages/core/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## [2.0.0](https://github.com/TrigenSoftware/simple-release/compare/v1.0.0...v2.0.0) (2025-06-05)
7+
8+
### Features
9+
10+
* a simple tool to release projects with monorepo support ([d695be5](https://github.com/TrigenSoftware/simple-release/commit/d695be51e9e0fdf12acfb86a8d0cefe802012271))

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@simple-release/core",
33
"type": "module",
4-
"version": "1.0.0",
4+
"version": "2.0.0",
55
"description": "A simple tool to release projects with monorepo support.",
66
"author": {
77
"name": "Dan Onoshko",
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## [2.0.0](https://github.com/TrigenSoftware/simple-release/compare/v1.0.0...v2.0.0) (2025-06-05)
7+
8+
### Features
9+
10+
* a simple-release api for github action ([#95](https://github.com/TrigenSoftware/simple-release/issues/95)) ([6842da1](https://github.com/TrigenSoftware/simple-release/commit/6842da1a008f9bd921046c1aadf24e3f45eb3a51))

packages/github-action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@simple-release/github-action",
33
"type": "module",
4-
"version": "1.0.0",
4+
"version": "2.0.0",
55
"description": "A simple-release api for github action.",
66
"author": {
77
"name": "Dan Onoshko",

packages/github/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
## [2.0.0](https://github.com/TrigenSoftware/simple-release/compare/v1.0.0...v2.0.0) (2025-06-05)
7+
8+
### Features
9+
10+
* a github addon for simple-release ([71430be](https://github.com/TrigenSoftware/simple-release/commit/71430be20ab9aa680f89d4d36b6dec7f76df4a82))

packages/github/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@simple-release/github",
33
"type": "module",
4-
"version": "1.0.0",
4+
"version": "2.0.0",
55
"description": "A github addon for simple-release.",
66
"author": {
77
"name": "Dan Onoshko",

0 commit comments

Comments
 (0)