Skip to content

Commit

Permalink
Bump version to 0.65.4 (#156)
Browse files Browse the repository at this point in the history
* Bump version to 0.65.4

* Fix MacOS Travis CI

Co-authored-by: Adrien Ball <[email protected]>
  • Loading branch information
Deluvi and adrienball committed Jan 15, 2020
1 parent a0a2f8b commit 0c96875
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 15 deletions.
9 changes: 4 additions & 5 deletions .travis/before_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ if [[ -z ${TRAVIS_RUST_VERSION+w} ]]; then
fi

if [[ ${TRAVIS_OS_NAME} == "osx" ]]; then
sudo installer -pkg /Library/Developer/CommandLineTools/Packages/macOS_SDK_headers_for_macOS_10.14.pkg -target /

if [[ ${PYTHON_TESTS} == true ]]; then
# install pyenv
git clone https://github.com/pyenv/pyenv $HOME/.pyenv
Expand All @@ -17,17 +15,18 @@ if [[ ${TRAVIS_OS_NAME} == "osx" ]]; then
PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init -)"

# CFLAGS stuff is needed because of https://github.com/pyenv/pyenv/issues/1219
case "${TOXENV}" in
"py27")
pyenv install 2.7.14
CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install 2.7.14
pyenv global 2.7.14
;;
"py36")
pyenv install 3.6.1
CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install 3.6.1
pyenv global 3.6.1
;;
"py37")
pyenv install 3.7.2
CFLAGS="-I$(xcrun --show-sdk-path)/usr/include" pyenv install 3.7.2
pyenv global 3.7.2
;;
esac
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased]
## [0.65.4] - 2020-01-15
### Changed
- Bumped crfsuite to `0.3.2` [#155](https://github.com/snipsco/snips-nlu-rs/pull/155)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snips-nlu-lib"
version = "0.65.3"
version = "0.65.4"
authors = [
"Adrien Ball <[email protected]>",
"Clement Doumouro <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snips-nlu-ffi"
version = "0.65.3"
version = "0.65.4"
edition = "2018"
authors = [
"Adrien Ball <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion ffi/cbindgen.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language = "c"

include_guard = "LIBSNIPS_NLU_H_"

header = "#define SNIPS_NLU_VERSION \"0.65.3\""
header = "#define SNIPS_NLU_VERSION \"0.65.4\""

[parse]
parse_deps = true
Expand Down
2 changes: 1 addition & 1 deletion platforms/c/libsnips_nlu.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#define SNIPS_NLU_VERSION "0.65.3"
#define SNIPS_NLU_VERSION "0.65.4"

#ifndef LIBSNIPS_NLU_H_
#define LIBSNIPS_NLU_H_
Expand Down
2 changes: 1 addition & 1 deletion platforms/kotlin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ buildscript {

apply plugin: 'kotlin'

version = "0.65.3"
version = "0.65.4"
group = "ai.snips"

repositories {
Expand Down
4 changes: 2 additions & 2 deletions platforms/python/ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snips-nlu-python-ffi"
version = "0.65.3"
version = "0.65.4"
authors = ["Adrien Ball <[email protected]>"]
edition = "2018"

Expand All @@ -11,4 +11,4 @@ crate-type = ["cdylib"]
[dependencies]
libc = "0.2"
ffi-utils = { git = "https://github.com/snipsco/snips-utils-rs", rev = "4292ad9" }
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.3" }
snips-nlu-ffi = { git = "https://github.com/snipsco/snips-nlu-rs", tag = "0.65.4" }
2 changes: 1 addition & 1 deletion platforms/python/snips_nlu_rust/__version__
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.65.3
0.65.4
2 changes: 1 addition & 1 deletion platforms/swift/SnipsNlu/Dependencies/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

set -e

VERSION="0.65.3"
VERSION="0.65.4"
SYSTEM=$(echo $1 | tr '[:upper:]' '[:lower:]')
LIBRARY_NAME=libsnips_nlu_ffi
LIBRARY_NAME_A=${LIBRARY_NAME}.a
Expand Down

0 comments on commit 0c96875

Please sign in to comment.