diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5e824e8ee1..70ff467c10 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 4171281d9b..1c61f77cd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/scripts/release/cliff-pre.toml b/scripts/release/cliff-pre.toml index c5aac65826..14331286f0 100644 --- a/scripts/release/cliff-pre.toml +++ b/scripts/release/cliff-pre.toml @@ -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 diff --git a/scripts/release/cliff.toml b/scripts/release/cliff.toml index d7ddda9e9b..550800ea1a 100644 --- a/scripts/release/cliff.toml +++ b/scripts/release/cliff.toml @@ -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 diff --git a/version/version.go b/version/version.go index 1799582b39..79e3eea204 100644 --- a/version/version.go +++ b/version/version.go @@ -9,9 +9,9 @@ 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 ) @@ -19,11 +19,11 @@ const ( 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 {