Skip to content

Commit

Permalink
chore(release): update changelog and bump version to 1.0.0-dev.1 (#802)
Browse files Browse the repository at this point in the history
* chore(release): update changelog and version to 1.0.0-dev.1

* chore: reset versions for 1.0 release

* chore: code review to identify hardcoded versions

* chore: revert to old versions
  • Loading branch information
lklimek committed Jun 24, 2024
1 parent 48ff188 commit 8519783
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 29 deletions.
5 changes: 2 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ updates:
directory: "/"
schedule:
interval: weekly
target-branch: "v0.35.x"
target-branch: "master"
open-pull-requests-limit: 10
reviewers:
- shotonoff
- shumkov
- lklimek
- iammadab
labels:
- dependencies
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## [1.0.0-dev.1] - 2024-06-24

### Bug Fixes

- Router.chDesc concurrent map iteration and write in pqueue (#794)

### Build

- Bump bufbuild/buf-setup-action from 1.31.0 to 1.32.0 (#793)
- Bump bufbuild/buf-setup-action from 1.32.0 to 1.32.2 (#796)
- Bump docker/login-action from 3.1.0 to 3.2.0 (#797)
- Bump docker/build-push-action from 5.3.0 to 5.4.0 (#799)
- Bump docker/build-push-action from 5.4.0 to 6.0.0 (#801)
- Bump bufbuild/buf-setup-action from 1.32.2 to 1.33.0 (#800)
- Bump goreleaser/goreleaser-action from 5 to 6 (#798)

## [0.14.0-dev.8] - 2024-05-20

### Bug Fixes
Expand All @@ -8,6 +24,7 @@

- Add Warn log level and decrease verbosity of some logs (#790)
- Detect quorum hash mismatch when verifying commit (#791)
- Update changelog and version to 0.14.0-dev.8 (#792)

## [0.14.0-dev.7] - 2024-05-17

Expand Down
22 changes: 11 additions & 11 deletions scripts/release/cliff-pre.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ conventional_commits = true
filter_unconventional = true
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^feat", group = "Features"},
{ message = "^fix", group = "Bug Fixes"},
{ message = "^doc", group = "Documentation"},
{ message = "^perf", group = "Performance"},
{ message = "^refactor", group = "Refactor"},
{ message = "^style", group = "Styling"},
{ message = "^test", group = "Testing"},
{ message = "^chore\\(release\\): update changelog and bump version to", skip = true},
{ message = "^chore", group = "Miscellaneous Tasks"},
{ body = ".*security", group = "Security"},
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^doc", group = "Documentation" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactor" },
{ message = "^style", group = "Styling" },
{ message = "^test", group = "Testing" },
{ message = "^chore\\(release\\): update changelog and bump version to", skip = true },
{ message = "^chore", group = "Miscellaneous Tasks" },
{ body = ".*security", group = "Security" },
]
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
tag_pattern = 'v0.[0-9]*'
tag_pattern = 'v[0-9].[0-9]*'
# regex for skipping tags
# skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
22 changes: 11 additions & 11 deletions scripts/release/cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ conventional_commits = true
filter_unconventional = true
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^feat", group = "Features"},
{ message = "^fix", group = "Bug Fixes"},
{ message = "^doc", group = "Documentation"},
{ message = "^perf", group = "Performance"},
{ message = "^refactor", group = "Refactor"},
{ message = "^style", group = "Styling"},
{ message = "^test", group = "Testing"},
{ message = "^chore\\(release\\): update changelog and bump version to", skip = true},
{ message = "^chore", group = "Miscellaneous Tasks"},
{ body = ".*security", group = "Security"},
{ message = "^feat", group = "Features" },
{ message = "^fix", group = "Bug Fixes" },
{ message = "^doc", group = "Documentation" },
{ message = "^perf", group = "Performance" },
{ message = "^refactor", group = "Refactor" },
{ message = "^style", group = "Styling" },
{ message = "^test", group = "Testing" },
{ message = "^chore\\(release\\): update changelog and bump version to", skip = true },
{ message = "^chore", group = "Miscellaneous Tasks" },
{ body = ".*security", group = "Security" },
]
# filter out the commits that are not matched by commit parsers
filter_commits = false
# glob pattern for matching git tags
tag_pattern = 'v0.[0-9]*'
tag_pattern = 'v[0-9].[0-9]*'
# regex for skipping tags
# skip_tags = "v0.1.0-beta.1"
# regex for ignoring tags
Expand Down
8 changes: 4 additions & 4 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ var (
const (
// TMVersionDefault is the used as the fallback version for Tenderdash
// when not using git describe. It is formatted with semantic versioning.
TMVersionDefault = "0.14.0-dev.8"
TMVersionDefault = "1.0.0-dev.1"
// ABCISemVer is the semantic version of the ABCI library
ABCISemVer = "0.27.0"
ABCISemVer = "1.0.0"

ABCIVersion = ABCISemVer
)

var (
// P2PProtocol versions all p2p behavior and msgs.
// This includes proposer selection.
P2PProtocol uint64 = 9
P2PProtocol uint64 = 10

// BlockProtocol versions all block data structures and processing.
// This includes validity of blocks and state updates.
BlockProtocol uint64 = 13
BlockProtocol uint64 = 14
)

type Consensus struct {
Expand Down

0 comments on commit 8519783

Please sign in to comment.