Skip to content

Commit 864d409

Browse files
Release 7.0.0rc2 (#753)
1 parent 624e4c4 commit 864d409

File tree

22 files changed

+31
-30
lines changed

22 files changed

+31
-30
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning].
66

7-
## [Unreleased]
7+
## [7.0.0rc2] - 2023-07-26
88

99
### Fixed
1010

@@ -1097,7 +1097,8 @@ This release contains no changes except for the version number.
10971097
[semantic versioning]: https://semver.org/spec/v2.0.0.html
10981098

10991099
<!-- Versions -->
1100-
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc1...HEAD
1100+
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc2...HEAD
1101+
[7.0.0rc2]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc1...7.0.0rc2
11011102
[7.0.0rc1]: https://github.com/dipdup-io/dipdup/compare/6.5.9...7.0.0rc1
11021103
[6.5.9]: https://github.com/dipdup-io/dipdup/compare/6.5.8...6.5.9
11031104
[6.5.8]: https://github.com/dipdup-io/dipdup/compare/6.5.7...6.5.8

docs/9.release-notes/1.v7.0.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: 7.0.0rc1
3-
description: DipDup 7.0.0rc1 release notes
2+
title: 7.0.0rc2
3+
description: DipDup 7.0.0rc2 release notes
44
---
55

6-
# Release Notes: 7.0.0rc1
6+
# Release Notes: 7.0.0rc2
77

88
::banner{type="warning"}
9-
7.0.0rc1 is the first release candidate; this guide may change before the final release.
9+
7.0.0rc2 is the second release candidate; this guide may change before the final release.
1010
::
1111

1212
Welcome, developers! Today we introduce the next major release DipDup 7.0. After half a year of active development, the amount of new features is huge, but we hope that updated docs and lots of examples won't let you get lost.
@@ -52,7 +52,7 @@ dipdup -c . -c configs/dipdup.sqlite.yaml config export
5252
Installer commands were moved to `dipdup self` command group. There you can switch the release channel or uninstall DipDup at any time:
5353

5454
```shell
55-
dipdup self install --version 7.0.0rc1
55+
dipdup self install --version 7.0.0rc2
5656
dipdup self update
5757
dipdup self install --force --ref next
5858
dipdup self uninstall
@@ -114,7 +114,7 @@ Here are some other notable changes not covered above:
114114

115115
Perform the following steps to migrate your project to 7.0:
116116

117-
1. Update your environment to Python 3.11. Install DipDup 7.0.0rc1 using our installer or manually.
117+
1. Update your environment to Python 3.11. Install DipDup 7.0.0rc2 using our installer or manually.
118118
2. Run `dipdup new` command, choose empty template `demo_blank`.
119119
3. Move your old config to the new project. Update it using the guide below.
120120
4. Run `dipdup init` command. It will generate a new package structure. Commit the changes.

pdm.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "dipdup"
33
description = "Modular framework for creating selective indexers and featureful backends for dapps"
4-
version = "7.0.0rc1"
4+
version = "7.0.0rc2"
55
license = { text = "MIT" }
66
authors = [
77
{ name = "Lev Gorodetskii", email = "[email protected]" },

requirements.dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ typing-extensions==4.7.1
123123
tzlocal==5.0.1
124124
urllib3==2.0.4
125125
watchdog==3.0.0
126-
web3==6.6.1
126+
web3==6.7.0
127127
websocket-client==1.6.1
128128
websockets==10.4
129129
yarl==1.9.2

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,6 @@ tortoise-orm==0.19.3
9292
typing-extensions==4.7.1
9393
tzlocal==5.0.1
9494
urllib3==2.0.4
95-
web3==6.6.1
95+
web3==6.7.0
9696
websockets==10.4
9797
yarl==1.9.2

src/demo_auction/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
readme = "README.md"
1010
requires-python = ">=3.11,<3.12"
1111
dependencies = [
12-
"dipdup>=7.0.0rc1,<8"
12+
"dipdup>=7.0.0rc2,<8"
1313
]
1414

1515
[tool.pdm.dev-dependencies]

src/demo_big_maps/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
readme = "README.md"
1010
requires-python = ">=3.11,<3.12"
1111
dependencies = [
12-
"dipdup>=7.0.0rc1,<8"
12+
"dipdup>=7.0.0rc2,<8"
1313
]
1414

1515
[tool.pdm.dev-dependencies]

src/demo_blank/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
readme = "README.md"
1010
requires-python = ">=3.11,<3.12"
1111
dependencies = [
12-
"dipdup>=7.0.0rc1,<8"
12+
"dipdup>=7.0.0rc2,<8"
1313
]
1414

1515
[tool.pdm.dev-dependencies]

src/demo_dao/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ authors = [
99
readme = "README.md"
1010
requires-python = ">=3.11,<3.12"
1111
dependencies = [
12-
"dipdup>=7.0.0rc1,<8"
12+
"dipdup>=7.0.0rc2,<8"
1313
]
1414

1515
[tool.pdm.dev-dependencies]

0 commit comments

Comments
 (0)