Skip to content

Commit

Permalink
add Project.toml, require at least julia 1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
visr committed Oct 15, 2019
1 parent 2662dcc commit eda80fb
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 25 deletions.
11 changes: 3 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,13 @@ os:
- linux
- osx
julia:
- 0.7
- 1.0
- 1
- nightly
matrix:
fast_finish: true
allow_failures:
- julia: nightly
notifications:
email: false
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia -e 'Pkg.clone(pwd()); Pkg.build("LasIO"); Pkg.test("LasIO"; coverage=true)'

after_success:
- julia -e 'cd(Pkg.dir("LasIO")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
codecov: true
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [0.3.0] - 2018-10-15
### Changed
- Minimum supported release is now julia 1.0

## [0.2.1] - 2018-09-16
### Fixed
- Fixed `load` for LAZ files by updating type signature
Expand Down
25 changes: 25 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name = "LasIO"
uuid = "570499db-eae3-5eb6-bdd5-a5326f375e68"
version = "0.3.0"

[deps]
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
GeometryTypes = "4d00f742-c7ba-57c2-abde-4428a4b178cb"
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"

[compat]
ColorTypes = "≥ 0.7.0"
FileIO = "≥ 1.0.0"
FixedPointNumbers = "≥ 0.6.0"
GeometryTypes = "≥ 0.6.0"
julia = "≥ 1.0.0"

[extras]
Mmap = "a63ad114-7e13-5084-954f-fe012c677804"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "Mmap"]
5 changes: 0 additions & 5 deletions REQUIRE

This file was deleted.

16 changes: 4 additions & 12 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,16 @@
environment:
matrix:
- julia_version: 0.7
- 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:
allow_failures:
- julia_version: nightly

branches:
only:
Expand All @@ -35,9 +33,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%"

2 comments on commit eda80fb

@visr
Copy link
Owner Author

@visr visr commented on eda80fb Oct 15, 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/4396

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

Please sign in to comment.