From c1dafdebd2a3e88fe7402aa802b304af7c0fe53d Mon Sep 17 00:00:00 2001 From: dbousque Date: Tue, 5 Dec 2023 16:18:25 +0100 Subject: [PATCH] chore(version): bump version --- ocaml/lib/batch_jaro_winkler.opam | 2 +- python/setup.py | 2 +- ruby/lib/batch_jaro_winkler/version.rb | 2 +- ruby/local_build.sh | 2 +- ruby/publish.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ocaml/lib/batch_jaro_winkler.opam b/ocaml/lib/batch_jaro_winkler.opam index e9a61d2..5c93a6d 100755 --- a/ocaml/lib/batch_jaro_winkler.opam +++ b/ocaml/lib/batch_jaro_winkler.opam @@ -1,6 +1,6 @@ opam-version: "2.0" name: "batch_jaro_winkler" -version: "0.1.2" +version: "0.1.3" maintainer: "Dominik Bousquet " authors: [ "Dominik Bousquet" ] license: "MIT" diff --git a/python/setup.py b/python/setup.py index d3d4252..65abdd4 100755 --- a/python/setup.py +++ b/python/setup.py @@ -5,7 +5,7 @@ setup( name='batch_jaro_winkler', - version='0.1.2', + version='0.1.3', description='Fast batch jaro winkler distance implementation in C99.', long_description='This project gets its performance from the pre-calculation of an optimized model in advance of the actual runtime calculations. Supports any encoding.', author='Dominik Bousquet', diff --git a/ruby/lib/batch_jaro_winkler/version.rb b/ruby/lib/batch_jaro_winkler/version.rb index cf0fe45..8bf0709 100755 --- a/ruby/lib/batch_jaro_winkler/version.rb +++ b/ruby/lib/batch_jaro_winkler/version.rb @@ -1,3 +1,3 @@ module BatchJaroWinkler - VERSION = '0.1.2' + VERSION = '0.1.3' end \ No newline at end of file diff --git a/ruby/local_build.sh b/ruby/local_build.sh index b9923eb..0007975 100755 --- a/ruby/local_build.sh +++ b/ruby/local_build.sh @@ -1 +1 @@ -rm -Rf ext/batch_jaro_winkler/ext && cp -R ../lib ext/batch_jaro_winkler/ext && gem build batch_jaro_winkler.gemspec && gem install batch_jaro_winkler-0.1.2.gem +rm -Rf ext/batch_jaro_winkler/ext && cp -R ../lib ext/batch_jaro_winkler/ext && gem build batch_jaro_winkler.gemspec && gem install batch_jaro_winkler-0.1.3.gem diff --git a/ruby/publish.sh b/ruby/publish.sh index ccee8bd..5ccfa65 100755 --- a/ruby/publish.sh +++ b/ruby/publish.sh @@ -1 +1 @@ -./local_build.sh && gem push batch_jaro_winkler-0.1.2.gem \ No newline at end of file +./local_build.sh && gem push batch_jaro_winkler-0.1.3.gem \ No newline at end of file