Skip to content

Commit

Permalink
Release v1.13.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hirrolot committed May 15, 2022
1 parent fb3ef8d commit f609707
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 4 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.2 - 2022-05-15

### Fixed

- Fix C++ compilation for `ML99_INTRODUCE_VAR_TO_STMT` and `ML99_INTRODUCE_NON_NULL_PTR_TO_STMT` ([issue #25](https://github.com/Hirrolot/metalang99/issues/25)).
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.13.1
PROJECT_NUMBER = 1.13.2

# 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.13.1'
release = '1.13.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion include/metalang99.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#define ML99_MAJOR 1
#define ML99_MINOR 13
#define ML99_PATCH 1
#define ML99_PATCH 2

#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.13.1)}
\title{Metalang99 Specification (v1.13.2)}
\date{\today}
\author{Hirrolot \\ e-mail: \href{mailto:[email protected]}{[email protected]}}
\maketitle
Expand Down

0 comments on commit f609707

Please sign in to comment.