Skip to content

Commit

Permalink
Merge pull request #155 from pybop-team/v23.12
Browse files Browse the repository at this point in the history
Bump to v23.12
  • Loading branch information
BradyPlanden authored Dec 19, 2023
2 parents 89cd712 + c0eb5a6 commit c07dd1a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI

on:
workflow_dispatch:
pull_request:
branches:
- main
release:
types: [published, prereleased]

jobs:
build:
Expand Down Expand Up @@ -34,7 +33,9 @@ jobs:
publish-to-pypi:
name: >-
Publish Python 🐍 distribution 📦 to PyPI
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
if: >
startsWith(github.ref, 'refs/tags/') &&
!contains(github.ref, 'rc')
needs:
- build
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Features

## Bug Fixes

# [v23.12](https://github.com/pybop-team/PyBOP/tree/v23.12) - 2023-12-19
## Features

- [#141](https://github.com/pybop-team/PyBOP/pull/141) - Adds documentation with Sphinx and PyData Sphinx Theme. Updates docstrings across package, relocates `costs` and `dataset` to top-level of package. Adds noxfile session and deployment workflow for docs.
- [#131](https://github.com/pybop-team/PyBOP/issues/131) - Adds `SciPyDifferentialEvolution` optimiser, adds functionality for user-selectable maximum iteration limit to `SciPyMinimize`, `NLoptOptimize`, and `BaseOptimiser` classes.
- [#107](https://github.com/pybop-team/PyBOP/issues/107) - Adds Equivalent Circuit Model (ECM) with examples, Import/Export parameter methods `ParameterSet.import_parameter` and `ParameterSet.export_parameters`, updates default FittingProblem.signal definition to `"Voltage [V]"`, and testing infrastructure
Expand Down
1 change: 1 addition & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ authors:
family-names: Courtier
- given-names: David
family-names: Howey
version: "23.12" # Update this when you release a new version
repository-code: 'https://www.github.com/pybop-team/pybop'
2 changes: 1 addition & 1 deletion pybop/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "23.11"
__version__ = "23.12"

0 comments on commit c07dd1a

Please sign in to comment.