From 7d6d0b57e1c2466aefeee5dc01ce174a6c4f2137 Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Wed, 30 Aug 2023 15:50:32 -0700 Subject: [PATCH] Bump version from 0.1.0 to 0.1.1 --- .github/workflows/github-pages.yml | 2 +- CHANGELOG.md | 9 ++++++++- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 328557c..012b533 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -5,7 +5,7 @@ on: workflow_dispatch env: POETRY_VERSION: "1.6.1" PYTHON_VERSION: "3.10" - DATALOGGER_VERSION: "0.1.0" + DATALOGGER_VERSION: "0.1.1" jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fcad50..b8c530c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.1.1] (Aug 30 2023) + +### Added + +- Support for Python 3.9 + ## [0.1.0] (Aug 8 2023) ### Added @@ -18,5 +24,6 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - Function `load_log()` to load log files. - Initial documentation website. -[unreleased]: https://github.com/PainterQubits/datalogger/compare/v0.1.0...main +[unreleased]: https://github.com/PainterQubits/datalogger/compare/v0.1.1...main +[0.1.1]: https://github.com/PainterQubits/datalogger/releases/tag/v0.1.1 [0.1.0]: https://github.com/PainterQubits/datalogger/releases/tag/v0.1.0 diff --git a/docs/conf.py b/docs/conf.py index c7ec133..6a9d46b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -4,7 +4,7 @@ project = "DataLogger" copyright = "2023, California Institute of Technology" author = "Alex Hadley" -release = "0.1.0" +release = "0.1.1" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index c4793f9..8994e92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "datalogger" -version = "0.1.0" +version = "0.1.1" description = "Python package for logging data from scientific experiments." authors = ["Alex Hadley "] license = "BSD-3-Clause"