3.4.0
This commit is contained in:
parent
38f0b446fa
commit
b71e10e701
3 changed files with 5 additions and 6 deletions
|
|
@ -1,8 +1,6 @@
|
||||||
# Clixon Changelog
|
# Clixon Changelog
|
||||||
|
|
||||||
## 3.4.0 (Upcoming)
|
## 3.4.0 (1 January 2018)
|
||||||
### Known issues
|
|
||||||
* Please use text datastore, key-value datastore no up-to-date
|
|
||||||
|
|
||||||
### Major changes:
|
### Major changes:
|
||||||
* Optimized search performance for large lists by sorting and binary search.
|
* Optimized search performance for large lists by sorting and binary search.
|
||||||
|
|
@ -41,7 +39,6 @@
|
||||||
formal specification instead of hardcoded C-code.
|
formal specification instead of hardcoded C-code.
|
||||||
|
|
||||||
### Corrected Bugs
|
### Corrected Bugs
|
||||||
|
|
||||||
* Fixed bug that deletes running on startup if backup started with -m running.
|
* Fixed bug that deletes running on startup if backup started with -m running.
|
||||||
When clixon starts again, running is lost.
|
When clixon starts again, running is lost.
|
||||||
The error was that the running (or startup) configuration may fail when
|
The error was that the running (or startup) configuration may fail when
|
||||||
|
|
@ -50,6 +47,8 @@
|
||||||
* datastore/keyvalue/Makefile was left behind on make distclean. Fixed by conditional configure. Thanks renato@netgate.com.
|
* datastore/keyvalue/Makefile was left behind on make distclean. Fixed by conditional configure. Thanks renato@netgate.com.
|
||||||
* Escape " in JSON names and strings and values
|
* Escape " in JSON names and strings and values
|
||||||
|
|
||||||
|
### Known issues
|
||||||
|
* Please use text datastore, key-value datastore no up-to-date
|
||||||
|
|
||||||
## 3.3.3 (25 November 2017)
|
## 3.3.3 (25 November 2017)
|
||||||
|
|
||||||
|
|
|
||||||
2
configure
vendored
2
configure
vendored
|
|
@ -2159,7 +2159,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||||
CLIXON_VERSION_MAJOR="3"
|
CLIXON_VERSION_MAJOR="3"
|
||||||
CLIXON_VERSION_MINOR="4"
|
CLIXON_VERSION_MINOR="4"
|
||||||
CLIXON_VERSION_PATCH="0"
|
CLIXON_VERSION_PATCH="0"
|
||||||
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}.PRE\""
|
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}\""
|
||||||
# Fix to specific version (eg 3.5) or head (3)
|
# Fix to specific version (eg 3.5) or head (3)
|
||||||
CLIGEN_VERSION="3"
|
CLIGEN_VERSION="3"
|
||||||
if test "$prefix" = "NONE"; then
|
if test "$prefix" = "NONE"; then
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ AC_INIT(lib/clixon/clixon.h.in)
|
||||||
CLIXON_VERSION_MAJOR="3"
|
CLIXON_VERSION_MAJOR="3"
|
||||||
CLIXON_VERSION_MINOR="4"
|
CLIXON_VERSION_MINOR="4"
|
||||||
CLIXON_VERSION_PATCH="0"
|
CLIXON_VERSION_PATCH="0"
|
||||||
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}.PRE\""
|
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}\""
|
||||||
# Fix to specific version (eg 3.5) or head (3)
|
# Fix to specific version (eg 3.5) or head (3)
|
||||||
CLIGEN_VERSION="3"
|
CLIGEN_VERSION="3"
|
||||||
if test "$prefix" = "NONE"; then
|
if test "$prefix" = "NONE"; then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue