From d5e30e8004851730b24d1d98c1164a8ef1352557 Mon Sep 17 00:00:00 2001 From: Blake Harnden <32446120+bharnden@users.noreply.github.com> Date: Mon, 13 May 2024 14:44:57 -0700 Subject: [PATCH] bumping version to 9.1.0 --- configure.ac | 2 +- daemon/pyproject.toml | 2 +- dockerfiles/Dockerfile.rocky | 2 +- dockerfiles/Dockerfile.ubuntu | 2 +- docs/install_rocky.md | 2 +- docs/install_ubuntu.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.ac b/configure.ac index ed5a8b02..9d8b3eea 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. # this defines the CORE version number, must be static for AC_INIT -AC_INIT(core, 9.0.3) +AC_INIT(core, 9.1.0) # autoconf and automake initialization AC_CONFIG_SRCDIR([netns/version.h.in]) diff --git a/daemon/pyproject.toml b/daemon/pyproject.toml index c5b64771..d2f77b5e 100644 --- a/daemon/pyproject.toml +++ b/daemon/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "core" -version = "9.0.3" +version = "9.1.0" description = "CORE Common Open Research Emulator" authors = ["Boeing Research and Technology"] license = "BSD-2-Clause" diff --git a/dockerfiles/Dockerfile.rocky b/dockerfiles/Dockerfile.rocky index 42b47158..eed27610 100644 --- a/dockerfiles/Dockerfile.rocky +++ b/dockerfiles/Dockerfile.rocky @@ -64,7 +64,7 @@ RUN yum update -y && \ yum clean all # install core -ARG CORE_PACKAGE=core_9.0.3_x86_64.rpm +ARG CORE_PACKAGE=core_9.1.0_x86_64.rpm ARG PACKAGE_URL=https://github.com/coreemu/core/releases/latest/download/${CORE_PACKAGE} RUN yum update -y && \ wget -q ${PACKAGE_URL} && \ diff --git a/dockerfiles/Dockerfile.ubuntu b/dockerfiles/Dockerfile.ubuntu index 44e2da0b..fd07fa90 100644 --- a/dockerfiles/Dockerfile.ubuntu +++ b/dockerfiles/Dockerfile.ubuntu @@ -45,7 +45,7 @@ RUN apt-get update -y && \ rm -rf /var/lib/apt/lists/* # install core -ARG CORE_PACKAGE=core_9.0.3_amd64.deb +ARG CORE_PACKAGE=core_9.1.0_amd64.deb ARG PACKAGE_URL=https://github.com/coreemu/core/releases/latest/download/${CORE_PACKAGE} RUN apt-get update -y && \ wget -q ${PACKAGE_URL} && \ diff --git a/docs/install_rocky.md b/docs/install_rocky.md index 6c682335..f42d8f2f 100644 --- a/docs/install_rocky.md +++ b/docs/install_rocky.md @@ -58,7 +58,7 @@ sudo yum install -y ./emane*.rpm ./python3-emane-${EMANE_VERSION}-1.el8.noarch.r # install core cd ~/Documents -CORE_PACKAGE=core_9.0.3_x86_64.rpm +CORE_PACKAGE=core_9.1.0_x86_64.rpm PACKAGE_URL=https://github.com/coreemu/core/releases/latest/download/${CORE_PACKAGE} wget -q ${PACKAGE_URL} PYTHON=python3.9 yum install -y ./${CORE_PACKAGE} diff --git a/docs/install_ubuntu.md b/docs/install_ubuntu.md index 3e783746..3fe36431 100644 --- a/docs/install_ubuntu.md +++ b/docs/install_ubuntu.md @@ -62,7 +62,7 @@ sudo apt-get install -y ./emane*.deb ./python3-emane_*.deb # install core cd ~/Documents -CORE_PACKAGE=core_9.0.3_amd64.deb +CORE_PACKAGE=core_9.1.0_amd64.deb PACKAGE_URL=https://github.com/coreemu/core/releases/latest/download/${CORE_PACKAGE} wget -q ${PACKAGE_URL} sudo apt-get install -y ./${CORE_PACKAGE}