Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump v2403 #703

Merged
merged 1 commit into from
Mar 1, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump v2403
fabianbs96 committed Feb 29, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 29bd902ab24ebf198f66d1639015c3c4f0212e26
3 changes: 2 additions & 1 deletion BreakingChanges.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Breaking Changes

## Development HEAD
## v2403

- Versioning scheme has been changed from `<month><year>` to `<year><month>`
- 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.
- Build type `DebugSan` has been removed in favor of a new CMake option `PHASAR_ENABLE_SANITIZERS` that not only works in `Debug` mode.

2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -550,7 +550,7 @@ configure_package_config_file(

write_basic_package_version_file(
${CMAKE_CURRENT_BINARY_DIR}/phasarConfigVersion.cmake
VERSION 1.0.0
VERSION 2403
COMPATIBILITY SameMajorVersion
)

2 changes: 1 addition & 1 deletion Config.cmake.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
set(PHASAR_VERSION 1.0.0)
set(PHASAR_VERSION 2403)

@PACKAGE_INIT@
set_and_check(PHASAR_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@")
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:22.04
ARG LLVM_INSTALL_DIR="/usr/local/llvm-14"
LABEL Name=phasar Version=1.0.0
LABEL Name=phasar Version=2403

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

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

Version 0323
Version 2403

## Secure Software Engineering Group

6 changes: 3 additions & 3 deletions githooks/pre-push
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
local="$(git rev-parse --abbrev-ref HEAD)"

if [ "$local" = "master" ] ; then
version="#define PHASAR_VERSION v"
version="${version}$(date +"%m%y")"
echo "${version}" > include/phasar/Config/Version.h
version="#define PHASAR_VERSION v"
version="${version}$(date +"%y%m")"
echo "${version}" > include/phasar/Config/Version.h
fi
2 changes: 1 addition & 1 deletion include/phasar/Config/Version.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#ifndef PHASAR_CONFIG_VERSION_H
#define PHASAR_CONFIG_VERSION_H

#define PHASAR_VERSION v0323
#define PHASAR_VERSION v2403

#endif