Skip to content

Commit

Permalink
Merge pull request #142 from glotzerlab/release-v0.13.4
Browse files Browse the repository at this point in the history
Release v0.13.4
  • Loading branch information
joaander authored Nov 17, 2021
2 parents fc207b3 + 8a390e4 commit 1b18fe7
Show file tree
Hide file tree
Showing 11 changed files with 34 additions and 26 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.13.3
current_version = 0.13.4
commit = False
tag = False

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
image: glotzerlab/ci:2021.11-ubuntu20.04

steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
submodules: true
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Tar source
run: tar -cvzf ${name}-${tag}.tar.gz ${name}-${tag}

- uses: actions/upload-artifact@v2.2.3
- uses: actions/upload-artifact@v2.2.4
with:
name: release
path: |
Expand All @@ -77,12 +77,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v2.0.9
- uses: actions/download-artifact@v2.0.10
name: Download artifacts
with:
name: release

- uses: softprops/action-gh-release@v1
- uses: softprops/action-gh-release@v0.1.14
name: Create release
if: startsWith(github.ref, 'refs/tags/v')
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3.0.19
- uses: actions/stale@v4.0.0
with:
days-before-close: 10
stale-issue-label: stale
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/templates/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
image: glotzerlab/<< container_prefix >>-ubuntu20.04

steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
with:
fetch-depth: 0
submodules: true
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Tar source
run: tar -cvzf ${name}-${tag}.tar.gz ${name}-${tag}

- uses: actions/upload-artifact@v2.2.3
- uses: actions/upload-artifact@v2.2.4
with:
name: release
path: |
Expand All @@ -64,12 +64,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/download-artifact@v2.0.9
- uses: actions/download-artifact@v2.0.10
name: Download artifacts
with:
name: release

- uses: softprops/action-gh-release@v1
- uses: softprops/action-gh-release@v0.1.14
name: Create release
if: startsWith(github.ref, 'refs/tags/v')
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/templates/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3.0.19
- uses: actions/stale@v4.0.0
with:
days-before-close: 10
stale-issue-label: stale
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/templates/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ name: Unit test
run: tar --use-compress-program='zstd -10 -T0' -cvf install.tar install
# Upload the tarball. Retain the file for a limited time in case developers need to download
# and run tests locally for further debugging.
- uses: actions/upload-artifact@v2.2.3
- uses: actions/upload-artifact@v2.2.4
name: 'Upload install'
with:
name: install-${{ join(matrix.config, '_') }}-${{ github.sha }}
path: install.tar
retention-days: 7
<% endset %>
<% set download_install_steps %>
- uses: actions/download-artifact@v2.0.9
- uses: actions/download-artifact@v2.0.10
with:
name: install-${{ join(matrix.config, '_') }}-${{ github.sha }}
- name: Untar install
Expand All @@ -63,7 +63,7 @@ name: Unit test
jobs:
build:
<< job(name='Build', use_gpu_runners=False, configurations=test_configurations) >>
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
with:
path: code
submodules: true
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:

render_gallery:
<< job(name='Render gallery', use_gpu_runners=True, needs='build', configurations=gallery_configurations) >>
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
with:
submodules: true
path: code
Expand All @@ -113,7 +113,7 @@ jobs:
- {os: windows-2019, cmake_generator: "Visual Studio 16 2019"}
- {os: windows-2022, cmake_generator: "Visual Studio 17 2022"}
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
with:
path: code
submodules: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/unit_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

steps:

- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
with:
path: code
submodules: true
Expand All @@ -75,7 +75,7 @@ jobs:
run: tar --use-compress-program='zstd -10 -T0' -cvf install.tar install
# Upload the tarball. Retain the file for a limited time in case developers need to download
# and run tests locally for further debugging.
- uses: actions/upload-artifact@v2.2.3
- uses: actions/upload-artifact@v2.2.4
name: 'Upload install'
with:
name: install-${{ join(matrix.config, '_') }}-${{ github.sha }}
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Clean workspace
run: rm -rf ./*

- uses: actions/download-artifact@v2.0.9
- uses: actions/download-artifact@v2.0.10
with:
name: install-${{ join(matrix.config, '_') }}-${{ github.sha }}
- name: Untar install
Expand All @@ -136,11 +136,11 @@ jobs:
- name: Clean workspace
run: rm -rf ./*

- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
with:
submodules: true
path: code
- uses: actions/download-artifact@v2.0.9
- uses: actions/download-artifact@v2.0.10
with:
name: install-${{ join(matrix.config, '_') }}-${{ github.sha }}
- name: Untar install
Expand All @@ -161,7 +161,7 @@ jobs:
- {os: windows-2019, cmake_generator: "Visual Studio 16 2019"}
- {os: windows-2022, cmake_generator: "Visual Studio 17 2022"}
steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2.4.0
with:
path: code
submodules: true
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ fresnel_ releases follow `semantic versioning`_.
v0.x
----

v0.13.4 (2021-11-17)
^^^^^^^^^^^^^^^^^^^^

*Added*

* Support Python 3.10.
* Support clang 13.

v0.13.3 (2021-06-07)
^^^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = Fresnel
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "0.13.3"
PROJECT_NUMBER = "0.13.4"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = '0.13.3'
version = '0.13.4'
# The full version, including alpha/beta/rc tags.
release = '0.13.3'
release = '0.13.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion fresnel/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
version (str): fresnel package version, following semantic versioning.
"""

version = "0.13.3"
version = "0.13.4"

0 comments on commit 1b18fe7

Please sign in to comment.