Skip to content

Commit aa62635

Browse files
committed
2.0.35beta release
1 parent eba7b9f commit aa62635

File tree

2 files changed

+45
-0
lines changed

2 files changed

+45
-0
lines changed

CHANGELOG.md

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<!--
2+
Guiding Principles:
3+
4+
Changelogs are for humans, not machines.
5+
There should be an entry for every single version.
6+
The same types of changes should be grouped.
7+
Versions and sections should be linkable.
8+
The latest version comes first.
9+
The release date of each version is displayed.
10+
Mention whether you follow Semantic Versioning.
11+
12+
Usage:
13+
14+
Change log entries are to be added to the Unreleased section under the
15+
appropriate stanza (see below). Each entry should ideally include a tag and
16+
the Github issue reference in the following format:
17+
18+
* (<tag>) \#<issue-number> message
19+
20+
The issue numbers will later be link-ified during the release process so you do
21+
not have to worry about including a link manually, but you can if you wish.
22+
23+
Types of changes (Stanzas):
24+
25+
"Features" for new features.
26+
"Improvements" for changes in existing functionality.
27+
"Deprecated" for soon-to-be removed features.
28+
"Bug Fixes" for any bug fixes.
29+
"Client Breaking" for breaking Protobuf, gRPC and REST routes used by end-users.
30+
"CLI Breaking" for breaking CLI commands.
31+
"API Breaking" for breaking exported APIs used by developers building on SDK.
32+
"State Machine Breaking" for any changes that result in a different AppState given same genesisState and txList.
33+
Ref: https://keepachangelog.com/en/1.0.0/
34+
-->
35+
36+
# Changelog
37+
38+
## 2.0.35beta - 2023-02-27
39+
### Features
40+
* [#603](https://github.com/sei-protocol/sei-chain/pull/603) Set mempool ttl
41+
### Bug Fixes
42+
* [#612](https://github.com/sei-protocol/sei-chain/pull/612) Optimistic Processing should finish before main goroutine
43+
* [#613](https://github.com/sei-protocol/sei-chain/pull/613) Incorporate IAVL change that removes mutex locking
44+
* Various audit fixes

app/upgrades.go

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ var upgradesList = []string{
5151
"1.2.2beta-postfix",
5252
"2.0.29beta",
5353
"2.0.32beta",
54+
"2.0.35beta",
5455
}
5556

5657
func (app App) RegisterUpgradeHandlers() {

0 commit comments

Comments
 (0)