Skip to content

Commit

Permalink
major: v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xstelea committed Sep 24, 2023
1 parent 2795853 commit ba47d8a
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 25 deletions.
24 changes: 23 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
module.exports = { extends: ['@commitlint/config-conventional'] }
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': () => [
2,
'always',
[
'build',
'chore',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
'major',
],
],
},
}
23 changes: 9 additions & 14 deletions release.config.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,15 @@
module.exports = {
branches: [
'main',
'next',
{
name: 'release/rcnet-v3',
channel: 'rcnet-v3',
prerelease: 'rcnet-v3',
},
{
name: 'release/rcnet-v3.1',
channel: 'rcnet-v3.1',
prerelease: 'rcnet-v3.1',
},
],
branches: ['main', 'next'],
plugins: [
[
'@semantic-release/commit-analyzer',
{
preset: 'conventionalcommits',
releaseRules: [
{
type: 'major',
release: 'major',
},
{
type: 'refactor',
release: 'patch',
Expand Down Expand Up @@ -74,6 +65,10 @@ module.exports = {
},
presetConfig: {
types: [
{
type: 'major',
release: 'major',
},
{
type: 'feat',
section: ':sparkles: Features',
Expand Down
16 changes: 8 additions & 8 deletions typescript/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions typescript/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@
"vite-tsconfig-paths": "^4.2.0"
},
"dependencies": {
"@radixdlt/babylon-gateway-api-sdk": "^1.0.0-rc.3.1.2",
"@radixdlt/radix-engine-toolkit": "0.4.0",
"@radixdlt/babylon-gateway-api-sdk": "1.0.1",
"@radixdlt/radix-engine-toolkit": "1.0.0",
"elliptic": "^6.5.4",
"neverthrow": "^6.0.0"
},
Expand Down

0 comments on commit ba47d8a

Please sign in to comment.