diff --git a/.bumpversion.cfg b/.bumpversion.cfg
index 708e47af..826e0bff 100644
--- a/.bumpversion.cfg
+++ b/.bumpversion.cfg
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 0.5.517-dev
+current_version = 0.5.517
 commit = True
 tag = False
 parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(?:-(?P<release>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+(?P<build>[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?
diff --git a/setup.cfg b/setup.cfg
index c748d375..2727ee4f 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -4,7 +4,7 @@
 # Configuring setup()
 [metadata]
 name = bioversions
-version = 0.5.517-dev
+version = 0.5.517
 description = What's the current version for each biological database?
 long_description = file: README.md
 long_description_content_type = text/markdown
diff --git a/src/bioversions/version.py b/src/bioversions/version.py
index 4c6bbc4e..c27b5c79 100644
--- a/src/bioversions/version.py
+++ b/src/bioversions/version.py
@@ -9,7 +9,7 @@
     "VERSION",
 ]
 
-VERSION = "0.5.517-dev"
+VERSION = "0.5.517"
 
 
 def get_git_hash() -> str: