Skip to content

Commit

Permalink
chore(version): bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
dbousque committed Dec 5, 2023
1 parent ddce989 commit c1dafde
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ocaml/lib/batch_jaro_winkler.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "batch_jaro_winkler"
version: "0.1.2"
version: "0.1.3"
maintainer: "Dominik Bousquet <[email protected]>"
authors: [ "Dominik Bousquet" ]
license: "MIT"
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion ruby/lib/batch_jaro_winkler/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module BatchJaroWinkler
VERSION = '0.1.2'
VERSION = '0.1.3'
end
2 changes: 1 addition & 1 deletion ruby/local_build.sh
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion ruby/publish.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
./local_build.sh && gem push batch_jaro_winkler-0.1.2.gem
./local_build.sh && gem push batch_jaro_winkler-0.1.3.gem

0 comments on commit c1dafde

Please sign in to comment.