Skip to content

Commit 1c08be9

Browse files
authored
Prepare 0.12.1 release (#748)
This commit prepares for the 0.12.1 bugfix release. It bumps all the version numbers and adds a prelude release note to document the release. Once this merges we should tag the 0.12.1 release from that merged commit.
1 parent 1a097bf commit 1c08be9

File tree

8 files changed

+40
-36
lines changed

8 files changed

+40
-36
lines changed

.github/workflows/wheels.yml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -371,27 +371,27 @@ jobs:
371371
env:
372372
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
373373
TWINE_USERNAME: retworkx-ci
374-
retworkx-compat-build:
375-
name: Build retworkx
376-
runs-on: ubuntu-latest
377-
needs: ["build_wheels", "build-win32-wheels"]
378-
steps:
379-
- uses: actions/checkout@v2
380-
- uses: actions/setup-python@v2
381-
name: Install Python
382-
with:
383-
python-version: '3.7'
384-
- name: Install deps
385-
run: pip install -U twine setuptools-rust
386-
- name: Build sdist
387-
run: python setup.py sdist bdist_wheel
388-
env:
389-
RUSTWORKX_PKG_NAME: retworkx
390-
- uses: actions/upload-artifact@v2
391-
with:
392-
path: ./dist/*
393-
- name: Upload to PyPI
394-
run: twine upload ./dist/*
395-
env:
396-
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
397-
TWINE_USERNAME: retworkx-ci
374+
retworkx-compat-build:
375+
name: Build retworkx
376+
runs-on: ubuntu-latest
377+
needs: ["build_wheels", "build-win32-wheels"]
378+
steps:
379+
- uses: actions/checkout@v2
380+
- uses: actions/setup-python@v2
381+
name: Install Python
382+
with:
383+
python-version: '3.7'
384+
- name: Install deps
385+
run: pip install -U twine setuptools-rust
386+
- name: Build sdist
387+
run: python setup.py sdist bdist_wheel
388+
env:
389+
RUSTWORKX_PKG_NAME: retworkx
390+
- uses: actions/upload-artifact@v2
391+
with:
392+
path: ./dist/*
393+
- name: Upload to PyPI
394+
run: twine upload ./dist/*
395+
env:
396+
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
397+
TWINE_USERNAME: retworkx-ci

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "rustworkx"
33
description = "A python graph library implemented in Rust"
4-
version = "0.12.0"
4+
version = "0.12.1"
55
authors = ["Matthew Treinish <mtreinish@kortar.org>"]
66
license = "Apache-2.0"
77
readme = "README.md"
@@ -32,7 +32,7 @@ num-complex = "0.4"
3232
quick-xml = "0.22.0"
3333
serde = { version = "1.0", features = ["derive"] }
3434
serde_json = "1.0"
35-
rustworkx-core = { path = "rustworkx-core", version = "=0.12.0" }
35+
rustworkx-core = { path = "rustworkx-core", version = "=0.12.1" }
3636

3737
[dependencies.pyo3]
3838
version = "0.17.3"

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424

2525

2626
# The short X.Y version.
27-
version = '0.12.0'
27+
version = '0.12.1'
2828
# The full version, including alpha/beta/rc tags.
29-
release = '0.12.0'
29+
release = '0.12.1'
3030

3131
extensions = ['sphinx.ext.autodoc',
3232
'sphinx.ext.autosummary',

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ rustworkx Documentation
44

55
.. note::
66

7-
The project has been renamed to **rustworkx**. You can still use the legavcy
7+
The project has been renamed to **rustworkx**. You can still use the legacy
88
retworkx name for now but starting in the 1.0.0 release the retworkx name
99
will no longer be supported.
1010

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
prelude: |
3+
This release is a bugfix release that fixes bugs identified since the
4+
0.12.0 release.

rustworkx-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rustworkx-core"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2018"
55
authors = ["Matthew Treinish <mtreinish@kortar.org>"]
66
description = "Rust APIs used for rustworkx algorithms"
@@ -27,4 +27,4 @@ version = "1.7"
2727
features = ["rayon"]
2828

2929
[dev-dependencies]
30-
rand = "0.8"
30+
rand = "0.8"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def readme():
2121
graphviz_extras = ['pillow>=5.4']
2222

2323
PKG_NAME = os.getenv('RUSTWORKX_PKG_NAME', "rustworkx")
24-
PKG_VERSION = "0.12.0"
24+
PKG_VERSION = "0.12.1"
2525
PKG_PACKAGES = ["rustworkx", "rustworkx.visualization"]
2626
PKG_INSTALL_REQUIRES = ['numpy>=1.16.0']
2727
RUST_EXTENSIONS = [RustExtension("rustworkx.rustworkx", "Cargo.toml",

0 commit comments

Comments
 (0)