Skip to content

Commit 5e007be

Browse files
authored
Bump v2403 (#703)
1 parent 7f0f756 commit 5e007be

7 files changed

Lines changed: 10 additions & 9 deletions

File tree

BreakingChanges.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Breaking Changes
22

3-
## Development HEAD
3+
## v2403
44

5+
- Versioning scheme has been changed from `<month><year>` to `<year><month>`
56
- Default build mode is no longer `SHARED` but `STATIC`. To build in shared mode, use the cmake option `BUILD_SHARED_LIBS` which we don't recommend anymore. Consider using `PHASAR_BUILD_DYNLIB` instead to build one big libphasar.so.
67
- Build type `DebugSan` has been removed in favor of a new CMake option `PHASAR_ENABLE_SANITIZERS` that not only works in `Debug` mode.
78

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,7 @@ configure_package_config_file(
550550

551551
write_basic_package_version_file(
552552
${CMAKE_CURRENT_BINARY_DIR}/phasarConfigVersion.cmake
553-
VERSION 1.0.0
553+
VERSION 2403
554554
COMPATIBILITY SameMajorVersion
555555
)
556556

Config.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(PHASAR_VERSION 1.0.0)
1+
set(PHASAR_VERSION 2403)
22

33
@PACKAGE_INIT@
44
set_and_check(PHASAR_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@")

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM ubuntu:22.04
22
ARG LLVM_INSTALL_DIR="/usr/local/llvm-14"
3-
LABEL Name=phasar Version=1.0.0
3+
LABEL Name=phasar Version=2403
44

55
RUN apt -y update && apt install bash sudo -y
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![C++ Standard](https://img.shields.io/badge/C++_Standard-C%2B%2B17-blue.svg?style=flat&logo=c%2B%2B)](https://isocpp.org/)
66
[![GitHub license](https://img.shields.io/badge/license-MIT-blueviolet.svg)](https://raw.githubusercontent.com/secure-software-engineering/phasar/master/LICENSE.txt)
77

8-
Version 0323
8+
Version 2403
99

1010
## Secure Software Engineering Group
1111

githooks/pre-push

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
local="$(git rev-parse --abbrev-ref HEAD)"
66

77
if [ "$local" = "master" ] ; then
8-
version="#define PHASAR_VERSION v"
9-
version="${version}$(date +"%m%y")"
10-
echo "${version}" > include/phasar/Config/Version.h
8+
version="#define PHASAR_VERSION v"
9+
version="${version}$(date +"%y%m")"
10+
echo "${version}" > include/phasar/Config/Version.h
1111
fi

include/phasar/Config/Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ifndef PHASAR_CONFIG_VERSION_H
22
#define PHASAR_CONFIG_VERSION_H
33

4-
#define PHASAR_VERSION v0323
4+
#define PHASAR_VERSION v2403
55

66
#endif

0 commit comments

Comments
 (0)