Skip to content

Commit

Permalink
Merge pull request #19 from rafaelmartinelli/release1.3.0
Browse files Browse the repository at this point in the history
Changes to comply with Registrator.
  • Loading branch information
rafaelmartinelli committed May 17, 2023
2 parents d3abe65 + 4fc2ac6 commit a791144
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: CI
on:
- push
- pull_request
jobs:
test:
Expand All @@ -10,18 +9,18 @@ jobs:
fail-fast: false
matrix:
version:
- '1'
- '1.6'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: actions/cache@v1
- uses: actions/cache@v3
env:
cache-name: cache-artifacts
with:
Expand All @@ -34,14 +33,14 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: codecov/codecov-action@v3
with:
file: lcov.info
docs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: '1'
Expand Down
10 changes: 9 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,12 @@ Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
ZipFile = "a5390f91-8eb1-5f08-bee0-b1d1ffed6cea"

[compat]
julia = "1"
Distances = "0.10"
julia = "1.6"
ZipFile = "0.10"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test"]
1 change: 1 addition & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[deps]
FacilityLocationProblems = "3771e204-432d-45a9-9661-5d0025a53671"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

2 comments on commit a791144

@rafaelmartinelli
Copy link
Owner Author

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 updated: JuliaRegistries/General/83733

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

Please sign in to comment.