Skip to content

Commit

Permalink
Merge pull request libvmi#238 from libvmi/release_versioning
Browse files Browse the repository at this point in the history
Update version numbers for 0.12.0 release
  • Loading branch information
Bryan Payne committed Mar 12, 2015
2 parents c9ca67e + 7632b49 commit 05f0d78
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ dnl --------------------------------
dnl Initialization macros.
dnl --------------------------------

AC_INIT([libvmi], [0.11.0])
AC_INIT([libvmi], [0.12.0])
AM_INIT_AUTOMAKE([subdir-objects])

AC_CONFIG_SRCDIR(libvmi/core.c)
Expand All @@ -13,7 +13,7 @@ AC_CANONICAL_HOST

LIBRARY_NAME=libvmi
MAJOR_VERSION=0
MINOR_VERSION=11
MINOR_VERSION=12
MICRO_VERSION=0
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
RELEASE=$MAJOR_VERSION.$MINOR_VERSION
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libvmi (0.12.0) unstable; urgency=low

* New release, see NEWS file for details.

-- Bryan D. Payne <[email protected]> Fri, 20 Feb 2015 17:33:23 -0700

libvmi (0.11) unstable; urgency=low

* Started using debian packaging.
Expand Down
2 changes: 1 addition & 1 deletion doc/doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ PROJECT_NAME = LibVMI
# This could be handy for archiving the generated documentation or
# if some version control system is used.

PROJECT_NUMBER = "Version 0.11.0".
PROJECT_NUMBER = "Version 0.12.0".

# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
Expand Down
2 changes: 1 addition & 1 deletion libvmi/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ vmi_init_private(
memset(*vmi, 0, sizeof(struct vmi_instance));

/* initialize instance struct to default values */
dbprint(VMI_DEBUG_CORE, "LibVMI Version 0.11.0\n"); //TODO change this with each release
dbprint(VMI_DEBUG_CORE, "LibVMI Version 0.12.0\n"); //TODO change this with each release

/* save the flags and init mode */
(*vmi)->flags = flags;
Expand Down

0 comments on commit 05f0d78

Please sign in to comment.