Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "RegistryTools"
uuid = "d1eb7eb1-105f-429d-abf5-b0f65cb9e2c4"
authors = ["Stefan Karpinski <[email protected]>"]
version = "2.3.0"
version = "3.0.0"

[deps]
LibGit2 = "76f85450-5226-5b5a-8eaa-529ad045b433"
Expand Down
1 change: 0 additions & 1 deletion src/register.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ const mandatory_errors = [:version_exists,
const registrator_errors = [:version_zero,
:version_less_than_all_existing,
:change_package_url,
:dependency_not_found,
:julia_before_07_in_compat,
:invalid_compat,
:unexpected_registration_error
Expand Down
5 changes: 3 additions & 2 deletions test/regedit.jl
Original file line number Diff line number Diff line change
Expand Up @@ -469,15 +469,15 @@ end
(project_files = ["Example11"],
status = Symbol[:new_package, :new_package_label,
:dependency_not_found],
regbranch = (error = true, warning = false,
regbranch = (error = false, warning = true,
kind = "New package",
labels = String["new package"]))

# Missing dependency.
(project_files = ["Example12"],
status = Symbol[:new_package, :new_package_label,
:dependency_not_found],
regbranch = (error = true, warning = false,
regbranch = (error = false, warning = true,
kind = "New package",
labels = String["new package"]))

Expand Down Expand Up @@ -558,6 +558,7 @@ end
registry_deps_paths = String[]
tree_hash = repeat("0", 40)
for test_data in registry_update_tests
# println("Test data: ", test_data)
if haskey(test_data, :skip_for_newer_julia) && VERSION >= v"1.2"
continue
end
Expand Down
Loading