diff --git a/build.sh b/build.sh index 0de3849..5bef116 100755 --- a/build.sh +++ b/build.sh @@ -1,9 +1,9 @@ #!/bin/bash git add . -git commit -m 'removed the "find_resistor" and "best_combinations" methods' -git push -u origin dev -git tag v2.0-rc2 +git commit -m 'ohmslaw 2.0.0' +git push -u origin main +git tag v2.0.0 git push --tag make clean make upload \ No newline at end of file diff --git a/ohmslaw/version.py b/ohmslaw/version.py index a6ad881..bf8085b 100644 --- a/ohmslaw/version.py +++ b/ohmslaw/version.py @@ -1,4 +1,4 @@ -__version__ = "2.0-rc2" +__version__ = "2.0.0" if __name__ == "__main__": print(__version__) diff --git a/pyproject.toml b/pyproject.toml index f3bd3e1..fded7f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "ohmslaw" -version = "2.0-rc2" +version = "2.0.0" authors = [ { name="Juan Bindez", email="juanbindez780@gmail.com" }, ]