Skip to content

Commit

Permalink
chore(release): 1.0.0 [skip ci]
Browse files Browse the repository at this point in the history
## 1.0.0 (2022-01-10)

### Bug Fixes

* update repo urls ([0791e25](0791e25))

### Trivial Changes

* intial commit ([f86f848](f86f848))
* update readme ([b9d7503](b9d7503))
* update readme ([7db8aae](7db8aae))
  • Loading branch information
semantic-release-bot committed Jan 10, 2022
1 parent 0791e25 commit 1ab2cca
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 44 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## 1.0.0 (2022-01-10)


### Bug Fixes

* update repo urls ([0791e25](https://github.com/achingbrain/it-stream-types/commit/0791e257ae9ffa21838e7a69d3f6932d50c254b0))


### Trivial Changes

* intial commit ([f86f848](https://github.com/achingbrain/it-stream-types/commit/f86f8484b11d100520523e165c7363601b7226f4))
* update readme ([b9d7503](https://github.com/achingbrain/it-stream-types/commit/b9d7503dd8dd65949e1a66f8ac72fae62e572ba6))
* update readme ([7db8aae](https://github.com/achingbrain/it-stream-types/commit/7db8aae3e70e35d0723c3604f5b419022f114b7f))
105 changes: 61 additions & 44 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "it-stream-types",
"version": "0.0.1",
"version": "1.0.0",
"description": "Typescript types for AsyncIterable sink/source/duplex streams",
"type": "module",
"types": "./dist/src/index.d.ts",
Expand All @@ -27,55 +27,72 @@
],
"plugins": [
[
"@semantic-release/commit-analyzer", {
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [{
"breaking": true,
"release": "major"
}, {
"revert": true,
"release": "patch"
}, {
"type": "feat",
"release": "minor"
}, {
"type": "fix",
"release": "patch"
}, {
"type": "chore",
"release": "patch"
}, {
"type": "docs",
"release": "patch"
}, {
"type": "test",
"release": "patch"
}, {
"scope": "no-release",
"release": false
}]
}
],
[
"@semantic-release/release-notes-generator", {
"preset": "conventionalcommits",
"presetConfig": {
"types": [{
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"section": "Features"
}, {
"release": "minor"
},
{
"type": "fix",
"section": "Bug Fixes"
}, {
"release": "patch"
},
{
"type": "chore",
"section": "Trivial Changes"
}, {
"release": "patch"
},
{
"type": "docs",
"section": "Trivial Changes"
}, {
"release": "patch"
},
{
"type": "test",
"section": "Tests"
}]
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Trivial Changes"
},
{
"type": "docs",
"section": "Trivial Changes"
},
{
"type": "test",
"section": "Tests"
}
]
}
}
],
Expand Down

0 comments on commit 1ab2cca

Please sign in to comment.