diff --git a/CHANGELOG.md b/CHANGELOG.md index db831ac..9342b07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,15 @@ Release Versions: +- [1.0.0](#100) - [0.2.0](#020) - [0.1.0](#010) +## 1.0.0 + +Version 1.0.0 accounts for breaking changes in control libraries and defines 5.0.0 as the required control libraries +version. Additionally, there is now an install script that takes care of the installation of network interfaces. + ## 0.2.0 Version 0.2.0 introduces a slightly different Dockerfile and contains a GitHub workflow to build and push an image with diff --git a/cpp/CMakeLists.txt b/cpp/CMakeLists.txt index 850ecf2..c4db9cc 100644 --- a/cpp/CMakeLists.txt +++ b/cpp/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.9) -project(network_interfaces VERSION 0.2.0) +project(network_interfaces VERSION 1.0.0) option(BUILD_TESTING "Build tests." OFF) diff --git a/python/setup.py b/python/setup.py index 48b1bb9..66dae6b 100644 --- a/python/setup.py +++ b/python/setup.py @@ -2,7 +2,7 @@ setuptools.setup( name="network_interfaces", - version="0.2.0", + version="1.0.0", description="This package implements network interfaces of AICA", maintainer="Dominic Reber", maintainer_email="dominic@aica.tech",