diff --git a/doc/release-checklist.md b/doc/release-checklist.md index 1683ee6bc..fa400050c 100644 --- a/doc/release-checklist.md +++ b/doc/release-checklist.md @@ -18,8 +18,12 @@ * `makepkg --printsrcinfo > .SRCINFO` * Test that package builds with `makepkg` * `git commit -a` -* Upload new Rust crate with `cargo upload` +* Upload new Rust crate with `cargo publish` +* Upload new Python pip with + * `python3 setup.py sdist` + * `twine upload dist/*` * Generate and upload new HTML documentation via `make html` + * `scp *.html qemfd.net:/var/www/notcurses/` * Update Debian changelog with `dch -v $NEXTVERSION-1` * Update `doc/FreeBSD-Makefile` version * Update CMakeLists.txt with next version diff --git a/python/setup.py b/python/setup.py index 276d73edd..20d6fc5a4 100644 --- a/python/setup.py +++ b/python/setup.py @@ -6,7 +6,7 @@ def read(fname): setup( name="notcurses", - version="1.1.0", + version="1.0.2", package_dir={'': 'src'}, packages=find_packages('src'), author="Nick Black", diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 1ac0f32f6..2d597aa23 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2,5 +2,5 @@ # It is not intended for manual editing. [[package]] name = "notcurses" -version = "0.9.9" +version = "1.0.2"