Skip to content

Commit

Permalink
Merge pull request #1088 from glotzerlab/release-v3.0.0-beta.8
Browse files Browse the repository at this point in the history
Release v3.0.0 beta.8
  • Loading branch information
joaander authored Aug 3, 2021
2 parents b64745c + 6c81239 commit cfe7ca9
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 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 = 3.0.0-beta.7
current_version = 3.0.0-beta.8
commit = False
tag = False
parse = ^(?P<major>0|[1-9]\d*)\.(?P<minor>0|[1-9]\d*)\.(?P<patch>0|[1-9]\d*)(?:-(?P<prerelease>(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))(?:\.(?P<number>0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)))?$
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
run: tar -cvzf ${name}-${tag}.tar.gz ${name}-${tag}

- name: Upload release files
uses: actions/upload-artifact@v2.2.3
uses: actions/upload-artifact@v2.2.4
with:
name: release
path: |
Expand All @@ -81,12 +81,12 @@ jobs:

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

- name: Create release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v0.1.7
if: startsWith(github.ref, 'refs/tags/v')
with:
files: "*.tar.gz"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/templates/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: tar -cvzf ${name}-${tag}.tar.gz ${name}-${tag}

- name: Upload release files
uses: actions/upload-artifact@v2.2.3
uses: actions/upload-artifact@v2.2.4
with:
name: release
path: |
Expand All @@ -67,12 +67,12 @@ jobs:

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

- name: Create release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v0.1.7
if: startsWith(github.ref, 'refs/tags/v')
with:
files: "*.tar.gz"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/templates/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,29 +84,29 @@ env:
# Upload the tarballs. Retain the file for a limited time in case developers need to download
# and run tests locally for further debugging.
- name: 'Upload build'
uses: actions/upload-artifact@v2.2.3
uses: actions/upload-artifact@v2.2.4
with:
name: build-${{ join(matrix.config, '_') }}-${{ github.sha }}
path: build.tar
retention-days: 7
- name: 'Upload install'
uses: actions/upload-artifact@v2.2.3
uses: actions/upload-artifact@v2.2.4
with:
name: install-${{ join(matrix.config, '_') }}-${{ github.sha }}
path: install.tar
retention-days: 7
<% endset %>
<% set download_build_steps %>
- name: Download build
uses: actions/download-artifact@v2.0.9
uses: actions/download-artifact@v2.0.10
with:
name: build-${{ join(matrix.config, '_') }}-${{ github.sha }}
- name: Untar build
run: << tar_command >> -xvf build.tar
<% endset %>
<% set download_install_steps %>
- name: Download install
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 Down
18 changes: 9 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ jobs:
# Upload the tarballs. Retain the file for a limited time in case developers need to download
# and run tests locally for further debugging.
- name: 'Upload build'
uses: actions/upload-artifact@v2.2.3
uses: actions/upload-artifact@v2.2.4
with:
name: build-${{ join(matrix.config, '_') }}-${{ github.sha }}
path: build.tar
retention-days: 7
- name: 'Upload install'
uses: actions/upload-artifact@v2.2.3
uses: actions/upload-artifact@v2.2.4
with:
name: install-${{ join(matrix.config, '_') }}-${{ github.sha }}
path: install.tar
Expand All @@ -133,7 +133,7 @@ jobs:
run: rm -rf ./*

- name: Download install
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 Down Expand Up @@ -176,7 +176,7 @@ jobs:
run: rm -rf ./*

- name: Download build
uses: actions/download-artifact@v2.0.9
uses: actions/download-artifact@v2.0.10
with:
name: build-${{ join(matrix.config, '_') }}-${{ github.sha }}
- name: Untar build
Expand Down Expand Up @@ -213,7 +213,7 @@ jobs:
run: rm -rf ./*

- name: Download install
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 Down Expand Up @@ -287,13 +287,13 @@ jobs:
# Upload the tarballs. Retain the file for a limited time in case developers need to download
# and run tests locally for further debugging.
- name: 'Upload build'
uses: actions/upload-artifact@v2.2.3
uses: actions/upload-artifact@v2.2.4
with:
name: build-${{ join(matrix.config, '_') }}-${{ github.sha }}
path: build.tar
retention-days: 7
- name: 'Upload install'
uses: actions/upload-artifact@v2.2.3
uses: actions/upload-artifact@v2.2.4
with:
name: install-${{ join(matrix.config, '_') }}-${{ github.sha }}
path: install.tar
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
run: rm -rf ./*

- name: Download install
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 Down Expand Up @@ -379,7 +379,7 @@ jobs:
run: rm -rf ./*

- name: Download build
uses: actions/download-artifact@v2.0.9
uses: actions/download-artifact@v2.0.10
with:
name: build-${{ join(matrix.config, '_') }}-${{ github.sha }}
- name: Untar build
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Change Log
v3.x
----

v3.0.0-beta.8 (not yet released)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
v3.0.0-beta.8 (2021-08-03)
^^^^^^^^^^^^^^^^^^^^^^^^^^

*Added*

Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ add_subdirectory (CMake)

################################
## Version information
set(HOOMD_VERSION_RAW "3.0.0-beta.7")
set(HOOMD_VERSION_RAW "3.0.0-beta.8")
string(REGEX MATCH "(.*)\\.(.*)\\.(.*)$" _hoomd_version_match ${HOOMD_VERSION_RAW})
set(HOOMD_VERSION_MAJOR ${CMAKE_MATCH_1})
set(HOOMD_VERSION_MINOR ${CMAKE_MATCH_2})
Expand Down
4 changes: 2 additions & 2 deletions sphinx-doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
copyright = '2009-2021 The Regents of the University of Michigan'
author = 'The Regents of the University of Michigan'

version = '3.0.0-beta.7'
release = '3.0.0-beta.7'
version = '3.0.0-beta.8'
release = '3.0.0-beta.8'

language = None

Expand Down

0 comments on commit cfe7ca9

Please sign in to comment.