Skip to content

Commit

Permalink
Bump version number to v1.0.0 (#238)
Browse files Browse the repository at this point in the history
* Bump version number to v1.0.0

* Add TagBot

This is used to automatically generate git tags in the repository after a
version is successfully registerd in the General registry.

* Add required versions for PDMats and StructArrays
  • Loading branch information
giordano authored Apr 27, 2023
1 parent 619d887 commit 717e3fc
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/TagBot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: TagBot
on:
issue_comment:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: 3
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Edit the following line to reflect the actual name of the GitHub Secret containing your private key
ssh: ${{ secrets.DOCUMENTER_KEY }}
# ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }}
4 changes: 3 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ParticleDA"
uuid = "61cd1fb4-f4c4-4bc8-80c6-ea5639a6ca2e"
authors = ["Mosè Giordano and Tuomas Koskela and Dan Giles and Matt Graham"]
version = "0.1.0"
version = "1.0.0"

[deps]
HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f"
Expand All @@ -17,6 +17,8 @@ YAML = "ddb6d928-2868-570f-bddf-ab3f9cf99eb6"
[compat]
HDF5 = "0.14, 0.15, 0.16"
MPI = "0.20.8"
PDMats = "0.11.17"
StructArrays = "0.6.15"
TimerOutputs = "0.5"
YAML = "0.4"
julia = "1.7"

4 comments on commit 717e3fc

@DanGiles
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Error while trying to register: Register Failed
@DanGiles, it looks like you are not a publicly listed member/owner in the parent organization (Team-RADDISH).
If you are a member/owner, you will need to change your membership to public. See GitHub Help

@DanGiles
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/82449

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" 717e3fc61f600f7d2bcc40e16f1e6f3037a459d9
git push origin v1.0.0

Please sign in to comment.