aboutsummaryrefslogtreecommitdiffstats
path: root/extra
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-04-09 19:50:49 -0700
committerBryan Newbold <bnewbold@archive.org>2021-04-09 19:50:49 -0700
commit43987f17fd10fcac49a28731aa0931959d7fee25 (patch)
tree21905585ec932178cc879685ec706068df763e01 /extra
parent9fa76388f12bf87faa1ababb319b1e004b3a7972 (diff)
downloadfatcat-cli-43987f17fd10fcac49a28731aa0931959d7fee25.tar.gz
fatcat-cli-43987f17fd10fcac49a28731aa0931959d7fee25.zip
reminders on release process (partial)v0.1.2
Diffstat (limited to 'extra')
-rw-r--r--extra/HOWTO_release.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/extra/HOWTO_release.md b/extra/HOWTO_release.md
new file mode 100644
index 0000000..54ffd06
--- /dev/null
+++ b/extra/HOWTO_release.md
@@ -0,0 +1,25 @@
+
+Reminder of release process (new tagged versions):
+
+final prep:
+- consider running `cargo update` and checking that everything works
+- `make lint` and fix anything
+- `make fmt` and commit any fixes
+- update CHANGELOG and increment version in `fatcat-cli/Cargo.toml`. `make build` to
+ update `Cargo.lock`, then commit
+- `make test`, `make deb` and ensure build works and is clean
+- ensure working directory is *entirely* clean (no "Untracked files" or edits,
+ even if unrelated to code changes)
+
+push/tag/etc:
+- when project is ready to share on crates.io, do: push to crates.io: `cargo publish`
+- create a git tag: `git tag vX.Y.Z -a -s -u bnewbold@archive.org -m "bump version to X.Y.Z"`
+- push git and tag: `git push`, `git push --tags`
+- `cp ./target/release/fatcat-cli fatcat-cli_X.Y.Z_amd64_linux`
+- upload linux binary and deb package, eg: `ia upload ia-fatcat-cli-bin ./target/debian/fatcat-cli_X.Y.Z_amd64.deb fatcat-cli_X.Y.Z_amd64_linux`
+
+homebrew / OS X (TODO):
+- pull project
+- build, then build package (?)
+- upload package (?)
+- update homebrew-fatcat repository