Skip to content

Commit

Permalink
Prepare for registration of v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ffevotte committed Nov 9, 2019
1 parent 2ea0649 commit 01b3127
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ os:
julia:
- 1.0
- 1.1
- 1.2
- 1.3
- nightly
# notifications:
# email: false
Expand All @@ -14,9 +16,9 @@ git:

## uncomment the following lines to allow failures on nightly julia
## (tests will run but not make your overall status red)
#matrix:
# allow_failures:
# - julia: nightly
matrix:
allow_failures:
- julia: nightly

## uncomment following lines to deploy documentation
# jobs:
Expand Down
9 changes: 8 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name = "GFlops"
uuid = "2ea8233c-34d4-5acc-88b4-02f326385bcc"
authors = ["François Févotte <ff@triscale-innov.com>"]
authors = ["François Févotte <francois.fevotte@triscale-innov.com>"]
license = "MIT"
version = "0.1.0"

[deps]
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Expand All @@ -12,5 +14,10 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
julia = "^1"
BenchmarkTools = "^0.4.2"
Cassette = "^0.2.3"

[targets]
test = ["Test"]
11 changes: 2 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,10 @@ julia> @gflops sum($x);

## Installation

This package is not (yet?) registered. You will have to specify its full URL in
order to `Pkg.add` it:
This package is registered and can therefore be simply be installed with

```julia
(v1.1) pkg> add https://github.com/triscale-innov/GFlops.jl.git
Updating registry at `~/.julia/registries/General`
Updating git-repo `https://github.com/JuliaRegistries/General.git`
Cloning git-repo `https://github.com/triscale-innov/GFlops.jl.git`
Updating git-repo `https://github.com/triscale-innov/GFlops.jl.git`
Resolving package versions...
[...]
pkg> add GFlops
```


Expand Down

2 comments on commit 01b3127

@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:

  • Initial release

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

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.0 -m "<description of version>" 01b3127cbad1697a2d4f56c12b72d6a5b2672efe
git push origin v0.1.0

Please sign in to comment.