Navigation Menu

Skip to content

Commit

Permalink
Update ChangeLog and bump version to v2.9-beta1
Browse files Browse the repository at this point in the history
We're not in Kansas anymore.

Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
  • Loading branch information
troglobit committed Oct 19, 2015
1 parent 13819cb commit a445185
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 4 deletions.
30 changes: 30 additions & 0 deletions ChangeLog.md
Expand Up @@ -4,6 +4,36 @@ Change Log
All notable changes in libConfuse are documented in this file.


v2.9 - [UNRELEASED]
-------------------

Special thanks in this release goes out to Frank Hunleth, Peter Rosin
and David Grayson for their tireless efforts in helping improve this
library!

### Changes

* Add public API for removing sections at runtime, by Peter Rosin.
* Allow `cfg_opt_getval()` on options that are `CFGF_MULTI` sections,
by Peter Rosin.
* Support for Travis-CI and Coverity Scan, by Joachim Nilsson
* Use `autoreconf` in `autogen.sh` instead of calling tools separtely.
* Powershell script for AppVeyor CI to build libConfuse with MSYS2
by David Grayson
* Support for handling unknown options. The idea is to provide future
proofing of configuration files, i.e. if a new parameter is added, the
new config file will not fail if loaded in an older version of your
program. Idea and implementation by Frank Hunleth

### Fixes

* Protect callers arguments to `cfg_setopt()`, by Peter Rosin
* If new value to `cfg_setopt()` fails parsing, do not lose old value,
by Peter Rosin.
* Fixes to update support for older versions of Microsoft Visual Studio
as well as MSYS2/mingw-w64 by Peter Rosin and David Grayson.


[v2.8][] - 2015-10-14
---------------------

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -2,7 +2,7 @@ dnl Process this file with -*- autoconf -*- to produce a configure script.

AC_PREREQ(2.50)

AC_INIT(libConfuse, 2.8, https://github.com/martinh/libconfuse/issues, confuse)
AC_INIT(libConfuse, 2.9-beta1, https://github.com/martinh/libconfuse/issues, confuse)
AC_CONFIG_AUX_DIR(support)
AM_MAINTAINER_MODE
AM_INIT_AUTOMAKE([foreign dist-xz])
Expand Down
6 changes: 3 additions & 3 deletions windows/mingw/config.h
Expand Up @@ -60,19 +60,19 @@
#define PACKAGE_NAME "libConfuse"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "libConfuse 2.8"
#define PACKAGE_STRING "libConfuse 2.9-beta1"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "confuse"

/* Define to the version of this package. */
#define PACKAGE_VERSION "2.8"
#define PACKAGE_VERSION "2.9-beta1"

/* Define to 1 if you have the ANSI C header files. */
#define STDC_HEADERS 1

/* Version number of package */
#define VERSION "2.8"
#define VERSION "2.9-beta1"

/* Define to 1 if `lex' declares `yytext' as a `char *' by default, not a
`char[]'. */
Expand Down

0 comments on commit a445185

Please sign in to comment.