Skip to content

Commit

Permalink
messages
Browse files Browse the repository at this point in the history
  • Loading branch information
cossio committed Oct 2, 2023
1 parent 2385a67 commit ca1043b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Pfam"
uuid = "275cd14a-065f-44bb-ab7a-e1328a0f1819"
authors = ["Jorge Fernandez-de-Cossio-Diaz <j.cossio.diaz@gmail.com>"]
version = "2.0.0"
version = "2.0.1"

[deps]
Downloads = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
Expand Down
4 changes: 2 additions & 2 deletions src/preferences.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
function set_pfam_directory(dir)
if isdir(dir)
@set_preferences!("PFAM_DIR" => dir)
@info "PFAM directory $dir set; restart Julia for this change to take effect."
@info "PFAM directory $dir set."
else
throw(ArgumentError("Invalid directory path: $dir"))
end
Expand All @@ -20,7 +20,7 @@ end
# Define verison of Pfam to use
function set_pfam_version(version)
@set_preferences!("PFAM_VERSION" => version)
@info "Pfam version $version set; restart Julia for this change to take effect."
@info "Pfam version $version set."
end

function get_pfam_version()
Expand Down

2 comments on commit ca1043b

@cossio
Copy link
Owner Author

@cossio cossio commented on ca1043b Oct 2, 2023

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

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 v2.0.1 -m "<description of version>" ca1043b8be76d4c7c8a0b38be71cdad3e289a6c1
git push origin v2.0.1

Please sign in to comment.