Skip to content

Commit 0a19cbe

Browse files
committed
Problem: need to bump patch number
Solution: udpated in project.xml
1 parent 27603d7 commit 0a19cbe

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

bindings/ruby/lib/czmq/ffi/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
module CZMQ
77
module FFI
8-
VERSION = '3.0.1'
8+
VERSION = '3.0.2'
99
end
1010
end
1111

include/czmq_library.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
#define CZMQ_VERSION_MAJOR 3
3232
#define CZMQ_VERSION_MINOR 0
33-
#define CZMQ_VERSION_PATCH 1
33+
#define CZMQ_VERSION_PATCH 2
3434

3535
#define CZMQ_MAKE_VERSION(major, minor, patch) \
3636
((major) * 10000 + (minor) * 100 + (patch))

project.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
>
77
<include filename = "license.xml" />
8-
<version major = "3" minor = "0" patch = "1" />
8+
<version major = "3" minor = "0" patch = "2" />
99
<use project = "zmq" />
1010

1111
<class name = "zactor" />

version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project=$1
1010
appendix="_library"
1111
if [ ! -f include/$project$appendix.h ]; then
12-
echo 3.0.1 | tr -d '\n'
12+
echo 3.0.2 | tr -d '\n'
1313
exit 0
1414
fi
1515
MAJOR=`egrep '^#define .*_VERSION_MAJOR +[0-9]+$' include/$project$appendix.h`

0 commit comments

Comments
 (0)