Skip to content

Commit

Permalink
set version to 0.6.0 prior to tagging release
Browse files Browse the repository at this point in the history
Also set upper bounds on dependencies and update CI config.
  • Loading branch information
visr committed Nov 21, 2019
1 parent b875551 commit 614a4f7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ os:
- osx
julia:
- 1.0
- 1
- nightly
matrix:
fast_finish: true
allow_failures:
- julia: nightly
notifications:
email: false
7 changes: 4 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name = "Proj4"
uuid = "9a7e659c-8ee8-5706-894e-f68f43bc57ea"
version = "0.6.0"

[deps]
BinaryProvider = "b99e7846-7c00-51b0-8f62-c81ae34c0232"
Expand All @@ -10,6 +11,6 @@ Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[compat]
BinaryProvider = "0.5.0"
julia = "≥ 1.0.0"
CEnum = "≥ 0.2.0"
BinaryProvider = "0.5"
CEnum = "0.2"
julia = "1.0"
16 changes: 5 additions & 11 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
environment:
matrix:
- julia_version: 1.0
- julia_version: 1
- julia_version: nightly

platform:
- x86 # 32-bit
- x64 # 64-bit

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

branches:
only:
Expand All @@ -34,9 +34,3 @@ build_script:
test_script:
- echo "%JL_TEST_SCRIPT%"
- C:\julia\bin\julia -e "%JL_TEST_SCRIPT%"

# # Uncomment to support code coverage upload. Should only be enabled for packages
# # which would have coverage gaps without running on Windows
# on_success:
# - echo "%JL_CODECOV_SCRIPT%"
# - C:\julia\bin\julia -e "%JL_CODECOV_SCRIPT%"

3 comments on commit 614a4f7

@visr
Copy link
Member Author

@visr visr commented on 614a4f7 Nov 21, 2019

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/5706

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.6.0 -m "<description of version>" 614a4f7f9c9bbffd4dd5b46c3ad72a77b213a9db
git push origin v0.6.0

@c42f
Copy link
Member

@c42f c42f commented on 614a4f7 Nov 22, 2019

Choose a reason for hiding this comment

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

Very nice to see this released!

Please sign in to comment.