Skip to content

Commit 64fe24e

Browse files
Bump version 7.0.0rc5 (#826)
1 parent 5a9d849 commit 64fe24e

File tree

149 files changed

+226
-349
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+226
-349
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Build
2-
concurrency:
2+
concurrency:
33
group: ${{ github.workflow }}-${{ github.ref }}
44
cancel-in-progress: true
55
on:

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# NOTE: To run this pipeline in act replace secrets.GITHUB_TOKEN with $GITHUB_TOKEN and uncomment the first step
22

33
name: Docs
4-
concurrency:
4+
concurrency:
55
group: ${{ github.workflow }}-${{ github.ref }}
66
cancel-in-progress: true
77
on:

.github/workflows/installer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Installer
2-
concurrency:
2+
concurrency:
33
group: ${{ github.workflow }}-${{ github.ref }}
44
cancel-in-progress: true
55
on:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Test
2-
concurrency:
2+
concurrency:
33
group: ${{ github.workflow }}-${{ github.ref }}
44
cancel-in-progress: true
55
on:

CHANGELOG.md

Lines changed: 4 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.0rc5] - 2023-09-06
88

99
### Fixed
1010

@@ -1156,7 +1156,9 @@ This release contains no changes except for the version number.
11561156
[semantic versioning]: https://semver.org/spec/v2.0.0.html
11571157

11581158
<!-- Versions -->
1159-
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc4...HEAD
1159+
[Unreleased]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc5...HEAD
1160+
[7.0.0rc5]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc4...7.0.0rc5
1161+
[6.5.11]: https://github.com/dipdup-io/dipdup/compare/6.5.10...6.5.11
11601162
[7.0.0rc4]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc3...7.0.0rc4
11611163
[7.0.0rc3]: https://github.com/dipdup-io/dipdup/compare/7.0.0rc2...7.0.0rc3
11621164
[6.5.10]: https://github.com/dipdup-io/dipdup/compare/6.5.9...6.5.10

docs/0.quickstart-evm.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ pipx install dipdup datamodel-code-generator
3030
# PDM
3131
pdm init --python 3.11 --lib # use "">=3.11,<3.12" for requires-python
3232
pdm venv create
33-
pdm add "dipdup>=7.0.0rc4,<8" --venv
33+
pdm add "dipdup>=7.0.0rc5,<8" --venv
3434
$(pdm venv activate)
3535

3636
# Poetry
3737
poetry init --python ">=3.11,<3.12"
38-
poetry add "dipdup>=7.0.0rc4,<8"
38+
poetry add "dipdup>=7.0.0rc5,<8"
3939
poetry shell
4040

4141
# pip + venv
4242
python -m venv .venv
4343
. .venv/bin/activate
44-
echo "dipdup>=7.0.0rc4,<8" > requirements.txt
44+
echo "dipdup>=7.0.0rc5,<8" > requirements.txt
4545
pip install -r requirements.txt -e .
4646
```
4747

@@ -63,7 +63,7 @@ Follow the instructions; the project will be created in the new directory.
6363

6464
## Write a configuration file
6565

66-
In the project root, you'll find a file named `dipdup.yaml`. It's the main configuration file of your indexer. We will discuss it in detail in the [Config](1.getting_started/3.config.md) section; for now just replace its content with the following:
66+
In the project root, you'll find a file named `dipdup.yaml`. It's the main configuration file of your indexer. We will discuss it in detail in the [Config](1.getting-started/3.config.md) section; for now just replace its content with the following:
6767

6868
```yaml [dipdup.yaml]
6969
{{ #include ../src/demo_evm_events/dipdup.yaml }}

docs/0.quickstart-tezos.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,18 @@ pipx install dipdup datamodel-code-generator
3030
# PDM
3131
pdm init --python 3.11 --lib # use "">=3.11,<3.12" for requires-python
3232
pdm venv create
33-
pdm add "dipdup>=7.0.0rc4,<8" --venv
33+
pdm add "dipdup>=7.0.0rc5,<8" --venv
3434
$(pdm venv activate)
3535

3636
# Poetry
3737
poetry init --python ">=3.11,<3.12"
38-
poetry add "dipdup>=7.0.0rc4,<8"
38+
poetry add "dipdup>=7.0.0rc5,<8"
3939
poetry shell
4040

4141
# pip + venv
4242
python -m venv .venv
4343
. .venv/bin/activate
44-
echo "dipdup>=7.0.0rc4,<8" > requirements.txt
44+
echo "dipdup>=7.0.0rc5,<8" > requirements.txt
4545
pip install -r requirements.txt -e .
4646
```
4747

@@ -63,7 +63,7 @@ Follow the instructions; the project will be created in the new directory.
6363

6464
## Write a configuration file
6565

66-
In the project root, you'll find a file named `dipdup.yaml`. It's the main configuration file of your indexer. We will discuss it in detail in the [Config](1.getting_started/3.config.md) section; for now just replace its content with the following:
66+
In the project root, you'll find a file named `dipdup.yaml`. It's the main configuration file of your indexer. We will discuss it in detail in the [Config](1.getting-started/3.config.md) section; for now just replace its content with the following:
6767

6868
```yaml [dipdup.yaml]
6969
{{ #include ../src/demo_token/dipdup.yaml }}

docs/1.getting-started/1.installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PDM is a very powerful package manager with a lot of features. Also, it can run
4848
```shell [Terminal]
4949
pdm init --python 3.11 --lib # use "">=3.11,<3.12" for requires-python
5050
pdm venv create
51-
pdm add "dipdup>=7.0.0rc4,<8" --venv
51+
pdm add "dipdup>=7.0.0rc5,<8" --venv
5252
$(pdm venv activate)
5353
```
5454

@@ -58,7 +58,7 @@ Poetry is another popular tool to manage Python projects. It doesn't support scr
5858

5959
```shell [Terminal]
6060
poetry init --python ">=3.11,<3.12"
61-
poetry add "dipdup>=7.0.0rc4,<8"
61+
poetry add "dipdup>=7.0.0rc5,<8"
6262
poetry shell
6363
```
6464

@@ -69,7 +69,7 @@ Finally, if you prefer to do everything manually, you can use pip. It's the most
6969
```shell [Terminal]
7070
python -m venv .venv
7171
. .venv/bin/activate
72-
echo "dipdup>=7.0.0rc4,<8" >> requirements.txt
72+
echo "dipdup>=7.0.0rc5,<8" >> requirements.txt
7373
pip install -r requirements.txt -e .
7474
```
7575

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: 7.0.0rc4
3-
description: DipDup 7.0.0rc4 release notes
2+
title: 7.0.0rc5
3+
description: DipDup 7.0.0rc5 release notes
44
---
55

6-
# Release Notes: 7.0.0rc4
6+
# Release Notes: 7.0.0rc5
77

88
::banner{type="warning"}
99
This page describes a release candidate and may change before the final release.
@@ -81,7 +81,7 @@ dipdup -c . -c configs/dipdup.sqlite.yaml config export
8181
Installer commands were moved to the `dipdup self` command group. There you can switch the release channel or uninstall DipDup at any time:
8282

8383
```shell
84-
dipdup self install --version 7.0.0rc4
84+
dipdup self install --version 7.0.0rc5
8585
dipdup self update
8686
dipdup self install --force --ref next
8787
dipdup self uninstall

docs/9.release-notes/3.v6.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ ________________________________________________________________________________
8383

8484
`demo_token.hooks.on_restart` callback execution failed:
8585

86-
Exception:
86+
Exception:
8787

8888
Eliminate the reason of failure and restart DipDup.
8989
________________________________________________________________________________

0 commit comments

Comments
 (0)