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

Commit

Permalink
release 0.9.0: step 2: update headers
Browse files Browse the repository at this point in the history
  • Loading branch information
bassosimone committed Dec 2, 2018
1 parent 27d4cbf commit 91e8ed8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/measurement_kit/common/version.h
Original file line number Diff line number Diff line change
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.9.0-beta"
#define MK_VERSION "0.9.0"

// MEASUREMENT_KIT_VERSION is a backward compatibility alias for MK_VERSION.
#define MEASUREMENT_KIT_VERSION MK_VERSION
Expand All @@ -23,7 +23,7 @@
// as part of the `./autogen.sh` script that prepares a source tarball. If we
// cannot run `git` because we're not in a git repository, then we set this
// variable equal to MK_VERSION.
#define MK_VERSION_FULL "v0.9.0-beta"
#define MK_VERSION_FULL "v0.9.0"

// MK_VERSION_MAJOR is the major version number extracted from MK_VERSION_FULL.
#define MK_VERSION_MAJOR 0
Expand All @@ -35,7 +35,7 @@
#define MK_VERSION_PATCH 0

// MK_VERSION_STABLE is 1 if this is a stable release, 0 otherwise.
#define MK_VERSION_STABLE 0
#define MK_VERSION_STABLE 1

// MK_VERSION_NUMERIC is the numberic representation of MK_VERSION_FULL,
// suitable to test the version of MK inside of headers.
Expand All @@ -47,7 +47,7 @@
// ^^^ ^^^ ^^^ ^^^
// major minor patch stable
// ```
#define MK_VERSION_NUMERIC 0x00000000009000000LL
#define MK_VERSION_NUMERIC 0x00000000009000001LL

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit 91e8ed8

Please sign in to comment.