3.9 develop branch
This commit is contained in:
parent
9881fe7a92
commit
9bd0dc42c6
5 changed files with 25 additions and 6 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
|
@ -1,5 +1,16 @@
|
|||
# Clixon Changelog
|
||||
|
||||
## 3.9.0 (Preliminary Target: 31 December 2018)
|
||||
|
||||
### Planned new features
|
||||
* [Roadmap](ROADMAP.md) (Uncommitted and unprioritized)
|
||||
|
||||
### Major New features
|
||||
### API changes on existing features (you may need to change your code)
|
||||
### Minor changes
|
||||
### Corrected Bugs
|
||||
### Known issues
|
||||
|
||||
## 3.8.0 (6 Nov 2018)
|
||||
|
||||
### Major New features
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@
|
|||
* [How to work in git (branching)](#branching)
|
||||
* [How the meta-configure stuff works](#meta-configure)
|
||||
* [How to debug](#debug)
|
||||
* [New release](#new-release)
|
||||
|
||||
## Documentation
|
||||
How to document the code
|
||||
|
|
@ -93,3 +94,10 @@ EOF
|
|||
valgrind --tool=callgrind clixon_netconf -qf /tmp/myconf.xml -y /tmp/my.yang
|
||||
sudo kcachegrind
|
||||
```
|
||||
|
||||
## New release
|
||||
What to think about when doing a new release.
|
||||
* git merge --no-ff develop
|
||||
* change CLIXON_VERSION in configure.ac
|
||||
* git tag -a <version"
|
||||
* git push origin <version>
|
||||
4
configure
vendored
4
configure
vendored
|
|
@ -2161,9 +2161,9 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|||
: ${INSTALLFLAGS="-s"}
|
||||
|
||||
CLIXON_VERSION_MAJOR="3"
|
||||
CLIXON_VERSION_MINOR="8"
|
||||
CLIXON_VERSION_MINOR="9"
|
||||
CLIXON_VERSION_PATCH="0"
|
||||
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}\""
|
||||
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}.PRE\""
|
||||
|
||||
# Fix to specific CLIgen version (eg 3.5) or head (3)
|
||||
CLIGEN_VERSION="3"
|
||||
|
|
|
|||
|
|
@ -43,9 +43,9 @@ AC_INIT(lib/clixon/clixon.h.in)
|
|||
: ${INSTALLFLAGS="-s"}
|
||||
|
||||
CLIXON_VERSION_MAJOR="3"
|
||||
CLIXON_VERSION_MINOR="8"
|
||||
CLIXON_VERSION_MINOR="9"
|
||||
CLIXON_VERSION_PATCH="0"
|
||||
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}\""
|
||||
CLIXON_VERSION="\"${CLIXON_VERSION_MAJOR}.${CLIXON_VERSION_MINOR}.${CLIXON_VERSION_PATCH}.PRE\""
|
||||
|
||||
# Fix to specific CLIgen version (eg 3.5) or head (3)
|
||||
CLIGEN_VERSION="3"
|
||||
|
|
|
|||
|
|
@ -55,7 +55,7 @@ distclean: clean
|
|||
rm -f Makefile *~ .depend
|
||||
|
||||
docker:
|
||||
sudo docker build -t $(IMAGE) .
|
||||
sudo docker build -t $(IMAGE) . # --no-cache
|
||||
echo "cd ../example; make docker to build example application"
|
||||
|
||||
push:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue