Skip to content
This repository has been archived by the owner on Mar 4, 2021. It is now read-only.

Commit

Permalink
release 0.10.14: step 1: update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed Jan 19, 2021
1 parent 8e3d949 commit 5a568fb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Expand Up @@ -4,6 +4,6 @@ INPUT = include/measurement_kit/ffi.h
JAVADOC_AUTOBRIEF = YES
PROJECT_BRIEF = "Portable C++14 network measurement library"
PROJECT_NAME = measurement-kit
PROJECT_NUMBER = v0.10.13
PROJECT_NUMBER = v0.10.14
RECURSIVE = NO
STRIP_FROM_INC_PATH = include
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,4 +1,4 @@
AC_INIT(measurement_kit, 0.10.13, bassosimone@gmail.com)
AC_INIT(measurement_kit, 0.10.14, bassosimone@gmail.com)

AC_CONFIG_SRCDIR([Makefile.am])
AC_CONFIG_MACRO_DIR([m4])
Expand Down
2 changes: 1 addition & 1 deletion include/measurement_kit/common/version.h.in
Expand Up @@ -14,7 +14,7 @@
// MK_VERSION is measurement-kit version according to manual tagging. This is
// updated when we bless a new release. It does not accurately describe a
// development build, for which MK_VERSION_FULL may be better.
#define MK_VERSION "0.10.13"
#define MK_VERSION "0.10.14"

// MEASUREMENT_KIT_VERSION is a backward compatibility alias for MK_VERSION.
#define MEASUREMENT_KIT_VERSION MK_VERSION
Expand Down
2 changes: 1 addition & 1 deletion script/update-includes
Expand Up @@ -4,7 +4,7 @@ set -e

gen_automatic_includes() {

vfull=`git describe --tags 2>/dev/null |echo v0.10.13`
vfull=`git describe --tags 2>/dev/null |echo v0.10.14`
vmajor=`echo $vfull|sed 's/^v//g'|awk -F. '{print $1}'`
vminor=`echo $vfull|awk -F. '{print $2}'`
vpatch=`echo $vfull|sed 's/-.*//g'|awk -F. '{print $3}'`
Expand Down

0 comments on commit 5a568fb

Please sign in to comment.