Skip to content

Commit

Permalink
Release 7.0.0rc2 (#753)
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout authored Jul 27, 2023
1 parent 624e4c4 commit 864d409
Show file tree
Hide file tree
Showing 22 changed files with 31 additions and 30 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.

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

## [Unreleased]
## [7.0.0rc2] - 2023-07-26

### Fixed

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

<!-- Versions -->
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc1...HEAD
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc2...HEAD
[7.0.0rc2]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc1...7.0.0rc2
[7.0.0rc1]: https://github.com/dipdup-io/dipdup/compare/6.5.9...7.0.0rc1
[6.5.9]: https://github.com/dipdup-io/dipdup/compare/6.5.8...6.5.9
[6.5.8]: https://github.com/dipdup-io/dipdup/compare/6.5.7...6.5.8
Expand Down
12 changes: 6 additions & 6 deletions docs/9.release-notes/1.v7.0.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
title: 7.0.0rc1
description: DipDup 7.0.0rc1 release notes
title: 7.0.0rc2
description: DipDup 7.0.0rc2 release notes
---

# Release Notes: 7.0.0rc1
# Release Notes: 7.0.0rc2

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

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.
Expand Down Expand Up @@ -52,7 +52,7 @@ dipdup -c . -c configs/dipdup.sqlite.yaml config export
Installer commands were moved to `dipdup self` command group. There you can switch the release channel or uninstall DipDup at any time:

```shell
dipdup self install --version 7.0.0rc1
dipdup self install --version 7.0.0rc2
dipdup self update
dipdup self install --force --ref next
dipdup self uninstall
Expand Down Expand Up @@ -114,7 +114,7 @@ Here are some other notable changes not covered above:

Perform the following steps to migrate your project to 7.0:

1. Update your environment to Python 3.11. Install DipDup 7.0.0rc1 using our installer or manually.
1. Update your environment to Python 3.11. Install DipDup 7.0.0rc2 using our installer or manually.
2. Run `dipdup new` command, choose empty template `demo_blank`.
3. Move your old config to the new project. Update it using the guide below.
4. Run `dipdup init` command. It will generate a new package structure. Commit the changes.
Expand Down
6 changes: 3 additions & 3 deletions pdm.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "dipdup"
description = "Modular framework for creating selective indexers and featureful backends for dapps"
version = "7.0.0rc1"
version = "7.0.0rc2"
license = { text = "MIT" }
authors = [
{ name = "Lev Gorodetskii", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion requirements.dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ typing-extensions==4.7.1
tzlocal==5.0.1
urllib3==2.0.4
watchdog==3.0.0
web3==6.6.1
web3==6.7.0
websocket-client==1.6.1
websockets==10.4
yarl==1.9.2
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,6 @@ tortoise-orm==0.19.3
typing-extensions==4.7.1
tzlocal==5.0.1
urllib3==2.0.4
web3==6.6.1
web3==6.7.0
websockets==10.4
yarl==1.9.2
2 changes: 1 addition & 1 deletion src/demo_auction/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_big_maps/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_blank/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_dao/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_dex/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_domains/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_events/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_evm_events/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_factories/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_head/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_nft_marketplace/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_raw/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_token/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_token_transfers/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/demo_uniswap/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
readme = "README.md"
requires-python = ">=3.11,<3.12"
dependencies = [
"dipdup>=7.0.0rc1,<8"
"dipdup>=7.0.0rc2,<8"
]

[tool.pdm.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion src/dipdup/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def install(

if not any((version, ref, path)):
# FIXME: Temporary, remove when 7.0.0 is released
version = '7.0.0rc1'
version = '7.0.0rc2'

env = DipDupEnvironment()
env.prepare()
Expand Down

0 comments on commit 864d409

Please sign in to comment.