Skip to content

Commit

Permalink
Merge pull request #9 from tpapp/tp/minor-version-bumps
Browse files Browse the repository at this point in the history
very minor fixes
  • Loading branch information
tpapp authored Apr 24, 2020
2 parents aa03421 + dc98389 commit abbddcd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
*.jl.mem
/deps/deps.jl
/docs/build
/Manifest.toml
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ julia:
- 1.1
- 1.2
- 1.3
- 1.4
- nightly
notifications:
email: false
Expand Down
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name = "PushVectors"
uuid = "36b54c61-190e-5a5f-82d5-6f0a962d7362"
authors = ["Tamas K. Papp <[email protected]>"]
version = "0.2.1"
version = "0.2.2"

[compat]
julia = "^1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "BenchmarkTools"]

[compat]
julia = "^1"
2 changes: 1 addition & 1 deletion test/coverage/coverage.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# only push coverage from one bot
get(ENV, "TRAVIS_OS_NAME", nothing) == "linux" || exit(0)
get(ENV, "TRAVIS_JULIA_VERSION", nothing) == "1.1" || exit(0)
get(ENV, "TRAVIS_JULIA_VERSION", nothing) == "1.4" || exit(0)

using Coverage

Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,5 @@ end
@test T_PushVector T_Vector
@info "benchmarks" A_PushVector A_Vector append!_ratio = round(A_PushVector / A_Vector; digits = 2)
# here just ensure that it is not much worse, testing is noisy
# @test A_PushVector ≤ A_Vector * 1.1
# @test A_PushVector ≤ A_Vector * 1.5
end

2 comments on commit abbddcd

@tpapp
Copy link
Owner Author

@tpapp tpapp commented on abbddcd Apr 24, 2020

Choose a reason for hiding this comment

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

@JuliaRegistrator register()

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

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

Also, note the warning: Version 0.2.2 skips over 0.2.1
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.