Skip to content

Commit

Permalink
Bump versions for next release (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbachman authored Apr 25, 2024
1 parent 65d5ad7 commit bfc7ee1
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions agent-ovs/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# ---------------------------------------------------------------
# Initialization

AC_INIT([opflex-agent],[2.6.0])
AC_INIT([opflex-agent],[2.7.0])
AC_SUBST(MODULE_NAME, ["Group-based Policy Agent"])

dnl For more information on libtool versioning, see:
Expand All @@ -35,7 +35,7 @@ dnl then increment age.
dnl 6. If any interfaces have been removed since the last public
dnl release, then set age to 0.

AC_SUBST(VERSION_INFO, [18:0:18])
AC_SUBST(VERSION_INFO, [19:0:19])

# initialize automake and libtool
AM_INIT_AUTOMAKE([subdir-objects])
Expand Down Expand Up @@ -169,8 +169,8 @@ if test "x$ax_cv_boost_asio" != xyes; then
AC_MSG_ERROR([Boost::ASIO library is required])
fi

PKG_CHECK_MODULES([libopflex], [libopflex >= 2.6.0])
PKG_CHECK_MODULES([libmodelgbp], [libmodelgbp >= 2.6.0])
PKG_CHECK_MODULES([libopflex], [libopflex >= 2.7.0])
PKG_CHECK_MODULES([libmodelgbp], [libmodelgbp >= 2.7.0])
PKG_CHECK_MODULES([rapidjson], [RapidJSON >= 1.1])

AM_COND_IF([RENDERER_OVS], [
Expand Down
2 changes: 1 addition & 1 deletion agent-ovs/debian/libopflex-agent.shlibs
Original file line number Diff line number Diff line change
@@ -1 +1 @@
libopflex_agent 0 libopflex-agent (>= 2.6.0)
libopflex_agent 0 libopflex-agent (>= 2.7.0)
4 changes: 2 additions & 2 deletions genie/configs/genie.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
config[
libname=modelgbp;
libversion=2.6.0;
libtoolversion=18:0:18;
libversion=2.7.0;
libtoolversion=19:0:19;
syntax=MODEL/SYNTAX;
loader=configs/opflex/loaders;
formatter=configs/opflex/formatters;
Expand Down
2 changes: 1 addition & 1 deletion genie/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<!-- Project Information -->
<groupId>org.opendaylight.opflex</groupId>
<artifactId>genie</artifactId>
<version>2.6.0-SNAPSHOT</version>
<version>2.7.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>genie</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void generate()
+ "# ---------------------------------------------------------------\n"
+ "# Dependency checks\n" + "\n" + "# Checks for header files\n"
+ "AX_BOOST_BASE([1.53.0], [], AC_MSG_ERROR([Boost is required]))\n"
+ "PKG_CHECK_MODULES([libopflex], [libopflex >= 2.6.0])\n" + "\n"
+ "PKG_CHECK_MODULES([libopflex], [libopflex >= 2.7.0])\n" + "\n"
+ "# Older versions of autoconf don't define docdir\n"
+ "if test x$docdir = x; then\n"
+ "\tAC_SUBST(docdir, ['${prefix}/share/doc/'$PACKAGE])\n" + "fi\n" + "\n"
Expand Down
4 changes: 2 additions & 2 deletions libopflex/configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dnl 1. the version in AC_INIT
dnl 2. the libtool version in VERSION_INFO

m4_define([sdk_pversion], 2)
m4_define([sdk_sversion], 6)
m4_define([sdk_sversion], 7)
m4_define([sdk_iversion], 0)
AC_INIT([libopflex],[sdk_pversion.sdk_sversion.sdk_iversion])
AC_SUBST(SDK_MARKETNAME, ["OpFlex Framework"])
Expand All @@ -48,7 +48,7 @@ dnl then increment age.
dnl 6. If any interfaces have been removed since the last public
dnl release, then set age to 0.

AC_SUBST(VERSION_INFO, [18:0:18])
AC_SUBST(VERSION_INFO, [19:0:19])

dnl ---------------------------------------------------------------
dnl Initialization
Expand Down

0 comments on commit bfc7ee1

Please sign in to comment.