Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Oct 21, 2022
1 parent 3de1e39 commit b26c4ac
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# minimum version: 3.12 for CMAKE_PROJECT_VERSION
cmake_minimum_required(VERSION 3.12 FATAL_ERROR)

project(cclyzer++ LANGUAGES C CXX VERSION 0.3)
project(cclyzer++ LANGUAGES C CXX VERSION 0.4.0)

# -----------------------------------------------------------------------------

Expand Down
20 changes: 20 additions & 0 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,26 @@ Changelog
next
****

`v0.4.0`_ - 2022-10-21
********************

`Compare to v0.3 <https://github.com/GaloisInc/cclyzerpp/compare/v0.4.0...v0.3>`_.

Changed
~~~~~~~

- Improved type-safety in the Datalog code.
- Several relations were renamed for the sake of consistency between the
FactGenerator and the analysis code (Datalog).

Removed
~~~~~~~

- Removed the unused ``subset-and-unification`` build target.
- Removed the instantiations of the ``ThrowInstruction`` component in both
analyses.
- Removed a few extraneous relations.

`v0.3`_ - 2022-10-12
********************

Expand Down
2 changes: 1 addition & 1 deletion doc/dev.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Cutting a Release

- Run the extended test suite (see ``EXTRA_TESTS`` above).
- Ensure that the :doc:`changelog` is up to date.
- Bump the project version``CMakeLists.txt`` and ``dist.dockerfile``.
- Bump the project version``CMakeLists.txt``.
- Push a new tag that starts with ``v``, e.g., ``v0.2``, and the CI build will
create a draft release on Github.

Expand Down
1 change: 0 additions & 1 deletion docker/dist.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
# TODO(#12): Upgrade to 22.04, LLVM 15
ARG BASE=ubuntu:20.04
FROM $BASE
ARG VERSION=0.3
SHELL ["/bin/bash", "-c", "-o", "pipefail"]
COPY ./build/cclyzer++*.deb /tmp/cclyzer++.deb
RUN dpkg -i /tmp/cclyzer++.deb && \
Expand Down

0 comments on commit b26c4ac

Please sign in to comment.