From 3dcc9c71d33f85dc398193293211f724de4f78d5 Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Wed, 4 Oct 2023 10:50:50 -0700 Subject: [PATCH] Bump version from 0.1.1 to 0.2.0 --- .github/workflows/github-pages.yml | 2 +- CHANGELOG.md | 5 ++++- docs/conf.py | 2 +- pyproject.toml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 012b533..cc47584 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.1" + DATALOGGER_VERSION: "0.2.0" jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index aa07feb..b6c08a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.2.0] (Oct 4 2023) + ### Added - Ability to create sub-`Logger`s with no timestamp using the `timestamp` option. @@ -33,6 +35,7 @@ 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.1...main +[unreleased]: https://github.com/PainterQubits/datalogger/compare/v0.2.0...main +[0.2.0]: https://github.com/PainterQubits/datalogger/releases/tag/v0.2.0 [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 6a9d46b..0bf9a7c 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.1" +release = "0.2.0" # General configuration extensions = [ diff --git a/pyproject.toml b/pyproject.toml index d954c69..7f14610 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "datalogger" -version = "0.1.1" +version = "0.2.0" description = "Python package for logging data from scientific experiments." authors = ["Alex Hadley "] license = "BSD-3-Clause"