From 9f6ec8c6ddef5ab672e68bd4da7c4b8ba16aa374 Mon Sep 17 00:00:00 2001 From: Alex Hadley Date: Thu, 4 May 2023 10:40:01 -0700 Subject: [PATCH] Bump version from 0.1.1 to 0.2.0 --- .github/workflows/github-pages.yml | 2 +- CHANGELOG.md | 28 +++++++++++++++++++++++----- frontend/package.json | 2 +- pyproject.toml | 2 +- 4 files changed, 26 insertions(+), 8 deletions(-) diff --git a/.github/workflows/github-pages.yml b/.github/workflows/github-pages.yml index 7b5195a..b87830c 100644 --- a/.github/workflows/github-pages.yml +++ b/.github/workflows/github-pages.yml @@ -3,7 +3,7 @@ name: Deploy to GitHub Pages on: workflow_dispatch env: - PARAMVIEW_VERSION: "0.1.1" + PARAMVIEW_VERSION: "0.2.0" jobs: build: diff --git a/CHANGELOG.md b/CHANGELOG.md index 553aa71..a608ea0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,19 +7,37 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0). ## [Unreleased] +## [0.2.0] (May 4 2023) + +### Added + +- Automatically opening a browser window can be disabled when using the `start_server` + Python function. + +### Changed + +- Improved automatic scrolling when searching for commits. +- Parameters are no longer sorted, meaning the original order is preserved. + +## Fixed + +- Dictionaries are no longer treated as lists in some cases. + ## [0.1.1] (Apr 11 2023) ### Fixed -- Releases contain the frontend + +- Releases contain the frontend. ## [0.1.0] (Apr 11 2023) ### Added -- GUI for viewing contents of a ParamDB database -- CLI command `paramview` for launching the GUI -- `start_server` Python function to launch the GUI +- GUI for viewing contents of a ParamDB database. +- CLI command `paramview` for launching the GUI. +- `start_server` Python function to launch the GUI. -[unreleased]: https://github.com/PainterQubits/paramview/compare/v0.1.1...main +[unreleased]: https://github.com/PainterQubits/paramview/compare/v0.2.0...main +[0.2.0]: https://github.com/PainterQubits/paramview/releases/tag/v0.2.0 [0.1.1]: https://github.com/PainterQubits/paramview/releases/tag/v0.1.1 [0.1.0]: https://github.com/PainterQubits/paramview/releases/tag/v0.1.0 diff --git a/frontend/package.json b/frontend/package.json index 1edd661..9d2bc7e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "frontend", "private": true, - "version": "0.1.1", + "version": "0.2.0", "type": "module", "scripts": { "dev": "vite", diff --git a/pyproject.toml b/pyproject.toml index d337e30..802c98a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "paramview" -version = "0.1.1" +version = "0.2.0" description = "GUI for viewing the contents of a ParamDB database." authors = ["Alex Hadley "] license = "BSD-3-Clause"