From c78c4611a1b0cdbd5bf9d924c7171926dcc2b2be Mon Sep 17 00:00:00 2001 From: Gabriel Couture Date: Wed, 11 May 2022 16:12:32 -0400 Subject: [PATCH] Preparing release v0.1.3 --- bin/trombone-5.2.1-jar-with-dependencies.jar | 3 --- pyproject.toml | 2 +- pytrombone/wrapper.py | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) delete mode 100644 bin/trombone-5.2.1-jar-with-dependencies.jar diff --git a/bin/trombone-5.2.1-jar-with-dependencies.jar b/bin/trombone-5.2.1-jar-with-dependencies.jar deleted file mode 100644 index d066dd3..0000000 --- a/bin/trombone-5.2.1-jar-with-dependencies.jar +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2000e69a35d9e4c945be01a38d7947e44ddf232b202a4c991d22ea5e1d0d169d -size 631510408 diff --git a/pyproject.toml b/pyproject.toml index 2f00cb2..c35b127 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pytrombone" -version = "0.1.2" +version = "0.1.3" description = "Wrapper for the Trombone project" authors = ["Gabriel Couture "] license = "BSD-3-Clause" diff --git a/pytrombone/wrapper.py b/pytrombone/wrapper.py index fe11221..39636ac 100644 --- a/pytrombone/wrapper.py +++ b/pytrombone/wrapper.py @@ -14,7 +14,7 @@ def __init__(self, jar_path: Optional[str] = None): if not os.path.exists(jar_path): print(f'Downloading Trombone ({jar_path}). This may take some minutes ...') download_file( - url='https://github.com/ulaval-rs/pytrombone/raw/main/bin/trombone-5.2.1-jar-with-dependencies.jar', + url='https://github.com/ulaval-rs/pytrombone/releases/download/v0.1.3/trombone-5.2.1-with-dependencies.jar', new_file_name=jar_path ) print(f'Trombone ({jar_path}) downloaded.')