Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
scivey committed Oct 26, 2015
1 parent 6b87687 commit 1950917
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion clients/java/client/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name := "client"
// orgnization name (e.g., the package name of the project)
organization := "org.relevanced"

version := "0.9.4-SNAPSHOT"
version := "0.9.5-SNAPSHOT"

// project description
description := "Java client for relevanced text similarity server."
Expand Down
2 changes: 1 addition & 1 deletion clients/nodejs/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "relevanced-client",
"version": "0.9.4b",
"version": "0.9.5",
"description": "client for relevanced-server",
"main": "index.js",
"homepage": "http://www.relevanced.org",
Expand Down
2 changes: 1 addition & 1 deletion clients/python/client/relevanced_client/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '0.9.4'
VERSION = '0.9.5'
2 changes: 1 addition & 1 deletion clients/ruby/client/relevanced_client.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'relevanced_client'
s.version = '0.9.4'
s.version = '0.9.5'
s.date = '2015-10-24'
s.summary = "relevanced client"
s.description = "Ruby client for relevanced-server"
Expand Down
4 changes: 2 additions & 2 deletions docs/clients/jvm.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To add it to a Maven project, add the following dependency to your `pom.xml` fil
<dependency>
<groupId>org.relevanced</groupId>
<artifactId>client</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>0.9.5-SNAPSHOT</version>
</dependency>
```

Expand All @@ -20,7 +20,7 @@ resolvers +=
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots"

libraryDependencies ++= Seq(
"org.relevanced" % "client" % "0.9.2-SNAPSHOT"
"org.relevanced" % "client" % "0.9.5-SNAPSHOT"
)

```
Expand Down
2 changes: 1 addition & 1 deletion scripts/packaging/build_deb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ UBUNTU_DEPS="libboost-all-dev (>= 1.54.0),\

MAKE_SCRIPT="$SCRIPT_DIR/make_linux_package.sh"

$MAKE_SCRIPT -t deb -i 0.9.4 -d $UBUNTU_DEPS
$MAKE_SCRIPT -t deb -i 0.9.5 -d $UBUNTU_DEPS
2 changes: 1 addition & 1 deletion scripts/packaging/make_linux_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ BUILD_DIR="$PROJECT_BUILD_DIR/deb"
PROJECT_BIN_BUILD_DIR="$PROJECT_ROOT/build/bin"
BUILT_SERVER_BINARY="$PROJECT_BIN_BUILD_DIR/src/relevanced_static"

PACKAGE_VERSION="0.9.4"
PACKAGE_VERSION="0.9.5"

PACKAGE_ARCH=`uname -m`
PACKAGE_ITERATION=""
Expand Down

0 comments on commit 1950917

Please sign in to comment.