Merge branch 'develop' into documentation

This commit is contained in:
fjosw 2022-12-01 10:41:43 +00:00
commit d0a73320ab
6 changed files with 16 additions and 12 deletions

View file

@ -11,10 +11,10 @@ jobs:
steps: steps:
- name: Set up Python environment - name: Set up Python environment
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: "3.8" python-version: "3.10"
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Updated documentation - name: Updated documentation
run: | run: |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" git config --global user.email "${{ github.actor }}@users.noreply.github.com"

View file

@ -20,10 +20,10 @@ jobs:
steps: steps:
- name: Checkout source - name: Checkout source
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Setup python - name: Setup python
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}

View file

@ -13,13 +13,13 @@ jobs:
name: Lint name: Lint
steps: steps:
- name: Check out source repository - name: Check out source repository
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Set up Python environment - name: Set up Python environment
uses: actions/setup-python@v1 uses: actions/setup-python@v4
with: with:
python-version: "3.10" python-version: "3.10"
- name: flake8 Lint - name: flake8 Lint
uses: py-actions/flake8@v1 uses: py-actions/flake8@v2
with: with:
ignore: "E501" ignore: "E501"
exclude: "__init__.py, input/__init__.py" exclude: "__init__.py, input/__init__.py"

View file

@ -25,10 +25,10 @@ jobs:
steps: steps:
- name: Checkout source - name: Checkout source
uses: actions/checkout@v2 uses: actions/checkout@v3
- name: Setup python - name: Setup python
uses: actions/setup-python@v2 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}

View file

@ -2,13 +2,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [2.4.0] - 2022-xx-xx ## [2.4.0] - 2022-12-01
### Added ### Added
- Log-derivatives and symmetric log-effective mass added. - Log-derivatives and symmetric log-effective mass added.
- Covariance for irregular Monte Carlo chains sped up. - Covariance for irregular Monte Carlo chains sped up.
- Additional checks in `Corr.GEVP` added.
### Fixed ### Fixed
- Bug in `Obs.details` fixed which appeared when tau had zero error. - Bug in `Obs.details` fixed which appeared when tau had zero error.
- Bug in `input.json` export in connection with `numpy.int64` fixed.
- Small bug fixes in `input.openQCD`.
## [2.3.1] - 2022-10-19 ## [2.3.1] - 2022-10-19

View file

@ -1 +1 @@
__version__ = "2.4.0+dev" __version__ = "2.4.0"