Skip to content

Commit

Permalink
prep for 1.2.0 (#191)
Browse files Browse the repository at this point in the history
* prep for 1.2.0

- Add Aqua
- Fix compat entries in Project.toml

* drop julia 1.3
  • Loading branch information
sjkelly committed Nov 14, 2023
1 parent cb5e53e commit 0b203fe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ jobs:
strategy:
matrix:
version:
- '1.3'
- '1.6'
- 'nightly'
os:
Expand Down
9 changes: 6 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@
name = "EzXML"
uuid = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615"
authors = ["Kenta Sato <bicycle1885@gmail.com>"]
version = "1.1.0"
version = "1.2.0"

[deps]
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
XML2_jll = "02c8fc9c-b97f-50b9-bbe4-9be30ff0a78a"

[compat]
julia = "1.3"
Printf = "1.3"
XML2_jll = "2.9"
julia = "1.6"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "Logging"]
test = ["Aqua", "Test", "Logging"]
4 changes: 4 additions & 0 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1461,3 +1461,7 @@ if "stress" in ARGS
unlink_xml()
swap_xml()
end

using Aqua

Aqua.test_all(EzXML; ambiguities=false)

0 comments on commit 0b203fe

Please sign in to comment.