add notes about python release

pull/271/head
nick black 5 years ago
parent 5a555ff917
commit 0330919564
No known key found for this signature in database
GPG Key ID: 5F43400C21CBFACC

@ -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

@ -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",

2
rust/Cargo.lock generated

@ -2,5 +2,5 @@
# It is not intended for manual editing.
[[package]]
name = "notcurses"
version = "0.9.9"
version = "1.0.2"

Loading…
Cancel
Save