Skip to content

Commit

Permalink
bumping version to 9.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bharnden committed May 13, 2024
1 parent d803478 commit d5e30e8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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])
Expand Down
2 changes: 1 addition & 1 deletion daemon/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.rocky
Original file line number Diff line number Diff line change
Expand Up @@ -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} && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -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} && \
Expand Down
2 changes: 1 addition & 1 deletion docs/install_rocky.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion docs/install_ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit d5e30e8

Please sign in to comment.