Skip to content

Commit

Permalink
Prepare for first release
Browse files Browse the repository at this point in the history
  • Loading branch information
ffevotte committed Dec 7, 2020
1 parent b34deb1 commit bc08ea1
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 3 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CompatHelper

on:
schedule:
- cron: '00 00 * * *'

jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- uses: julia-actions/setup-julia@latest
with:
version: 1.3
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: julia -e 'using CompatHelper; CompatHelper.main()'
11 changes: 11 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
jobs:
TagBot:
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
14 changes: 14 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Changelog

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
This file documents all notable changes between versions.

## [0.1.0] - 2020-12-07

First released version.

- Julia package feature:
- installation procedure
- CLI features:
- create: create and populate a local clone of a new, empty Registry
- add: add a new version of a package in the Registry
10 changes: 10 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
The RegistryCLI.jl package is licensed under the MIT "Expat" License:

Copyright (c) 2020: François Févotte, TriScale innov.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name = "RegistryCLI"
uuid = "41fcc7e7-1908-4925-8240-7eafabf08a75"
authors = ["François Févotte <[email protected]>"]
version = "0.1.0"
license = "MIT"

[deps]
ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Expand All @@ -12,3 +13,5 @@ Mustache = "ffc61752-8dc7-55ee-8c37-f3e9cdd09e70"
[compat]
ArgParse = "1.1"
LocalRegistry = "0.3"
Mustache = "1.0"
julia = "1"
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ usage: jlreg [-v] [-h] {create|add}
Manage a local Julia Registry from the command line.
commands:
create Create a new, empty Registry
add Add a new version of a package in the Registry
create Create and populate a local clone of a new, empty Registry
add Publish a new version of a package in the Registry
optional arguments:
-v, --verbose
-v, --verbose Print informative messages at each step
-h, --help show this help message and exit
```

Expand Down

2 comments on commit bc08ea1

@ffevotte
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

First released version.

  • Julia package feature:
    • installation procedure
  • CLI features:
    • create: create and populate a local clone of a new, empty Registry
    • add: add a new version of a package in the Registry

@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/26000

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 v0.1.0 -m "<description of version>" bc08ea1177f769fc605d170c5bc1571771390ad9
git push origin v0.1.0

Please sign in to comment.