From d2018de12fd5bd24b753133aa436c92bfaf6c7a6 Mon Sep 17 00:00:00 2001 From: Jaladh Singhal Date: Fri, 30 Aug 2024 11:36:38 -0700 Subject: [PATCH] Bump version and minor update in release docs --- docs/development/new-release-procedure.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/development/new-release-procedure.md b/docs/development/new-release-procedure.md index 9f66954..acc741b 100644 --- a/docs/development/new-release-procedure.md +++ b/docs/development/new-release-procedure.md @@ -13,6 +13,8 @@ python -m build ``` - Check it: `ls dist` should show two files a `.tar.gz` file and a `.whl` file + and both file names should contain correct version number that you intend to + release. 5. _Optional_ - At this point you could do an optional test installation ([see below](#optional-test-installation)) 6. Upload to PYPI 1. _One-time-only auth setup:_ Login to pypi and then in your account settings, go to the API tokens section and select "Add API token". Give it any name and select scope to project:firefly-client and create token. To save this token for later uses, make sure to create a `$HOME/.pypirc` file (or update it if you already have it) with the following: diff --git a/pyproject.toml b/pyproject.toml index 0b381ac..5b6cef3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "firefly_client" -version = "3.0.2" +version = "3.1.0" description = "Python API for Firefly: display astronomical data as tables, images, charts, and more!" authors = [ {name = "IPAC LSST SUIT"}