Skip to content

Commit

Permalink
Merge pull request #1023 from hintjens/master
Browse files Browse the repository at this point in the history
Problem: need to bump version number after release
  • Loading branch information
sappo committed Jun 8, 2015
2 parents a51af11 + 13f5321 commit cded224
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bindings/ruby/lib/czmq/ffi/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module CZMQ
module FFI
VERSION = '3.0.2'
VERSION = '3.0.3'
end
end

Expand Down
2 changes: 1 addition & 1 deletion include/czmq_library.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

#define CZMQ_VERSION_MAJOR 3
#define CZMQ_VERSION_MINOR 0
#define CZMQ_VERSION_PATCH 2
#define CZMQ_VERSION_PATCH 3

#define CZMQ_MAKE_VERSION(major, minor, patch) \
((major) * 10000 + (minor) * 100 + (patch))
Expand Down
2 changes: 1 addition & 1 deletion project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
email = "zeromq-dev@lists.zeromq.org"
>
<include filename = "license.xml" />
<version major = "3" minor = "0" patch = "2" />
<version major = "3" minor = "0" patch = "3" />
<use project = "zmq" />

<class name = "zactor" />
Expand Down
2 changes: 1 addition & 1 deletion version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project=$1
appendix="_library"
if [ ! -f include/$project$appendix.h ]; then
echo 3.0.2 | tr -d '\n'
echo 3.0.3 | tr -d '\n'
exit 0
fi
MAJOR=`egrep '^#define .*_VERSION_MAJOR +[0-9]+$' include/$project$appendix.h`
Expand Down

0 comments on commit cded224

Please sign in to comment.