Skip to content

Commit

Permalink
Release v1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hirrolot committed Dec 1, 2021
1 parent dce9fd7 commit 3eabd01
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## unreleased

## 1.13.0 - 2021-12-01

### Added

- Add the root `CMakeLists.txt` to be able to use CMake with [`FetchContent`] or [`add_subdirectory`] ([PR #20](https://github.com/Hirrolot/metalang99/pull/20)).
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Metalang99"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.12.1
PROJECT_NUMBER = 1.13.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = 'Hirrolot'

# The full version, including alpha/beta/rc tags
release = '1.12.1'
release = '1.13.0'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions include/metalang99.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
#include <metalang99/variadics.h>

#define ML99_MAJOR 1
#define ML99_MINOR 12
#define ML99_PATCH 1
#define ML99_MINOR 13
#define ML99_PATCH 0

#define ML99_VERSION_COMPATIBLE(x, y, z) \
(ML99_MAJOR == (x) && ((ML99_MINOR == (y) && ML99_PATCH >= (z)) || (ML99_MINOR > (y))))
Expand Down
Binary file modified spec/spec.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion spec/spec.tex
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

\begin{document}

\title{Metalang99 Specification (v1.12.1)}
\title{Metalang99 Specification (v1.13.0)}
\date{\today}
\author{Hirrolot \\ e-mail: \href{mailto:[email protected]}{[email protected]}}
\maketitle
Expand Down

0 comments on commit 3eabd01

Please sign in to comment.