Skip to content

Commit

Permalink
Problem: need to bump version number after release
Browse files Browse the repository at this point in the history
Solution: change in project.xml and rebuild.
  • Loading branch information
hintjens committed Jun 8, 2015
1 parent e4af2e7 commit 13f5321
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
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
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
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
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 13f5321

Please sign in to comment.