diff --git a/CHANGELOG.md b/CHANGELOG.md index eb37e38..96f7d4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,15 @@ Release Notes --- +## [1.4.2](https://github.com/arxlang/arx/compare/1.4.1...1.4.2) (2022-10-15) + + +### Bug Fixes + +* **arx-shell:** Fix arx shell ([#60](https://github.com/arxlang/arx/issues/60)) ([18b2262](https://github.com/arxlang/arx/commit/18b22621391e6d12af08b39b71c31fe26b9e5813)) +* Fix release workflow ([#62](https://github.com/arxlang/arx/issues/62)) ([e1db89a](https://github.com/arxlang/arx/commit/e1db89a81d9f0a163dbbe3c913789615af28d9ec)) +* **release:** Fix doxygen match ([#63](https://github.com/arxlang/arx/issues/63)) ([8670069](https://github.com/arxlang/arx/commit/8670069d05def7660973f565b4e73960471864c4)) + ## [1.4.1](https://github.com/arxlang/arx/compare/1.4.0...1.4.1) (2022-09-15) diff --git a/Doxyfile b/Doxyfile index f2f4a54..9b7b72c 100644 --- a/Doxyfile +++ b/Doxyfile @@ -48,7 +48,7 @@ PROJECT_NAME = ArxLang # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 1.4.1 # semantic-release +PROJECT_NUMBER = 1.4.2 # semantic-release # 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 diff --git a/arx/src/main.cpp b/arx/src/main.cpp index aee5822..e5b1476 100644 --- a/arx/src/main.cpp +++ b/arx/src/main.cpp @@ -26,7 +26,7 @@ #include "settings.h" #include "utils.h" -std::string ARX_VERSION = "1.4.1"; // semantic-release +std::string ARX_VERSION = "1.4.2"; // semantic-release extern std::string INPUT_FILE; extern std::string OUTPUT_FILE; extern bool INPUT_FROM_STDIN; diff --git a/conda/recipe/meta.yaml b/conda/recipe/meta.yaml index daeff02..a712c94 100644 --- a/conda/recipe/meta.yaml +++ b/conda/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "arx" %} -{% set version = "1.4.1" %} # semantic-release +{% set version = "1.4.2" %} # semantic-release {% set llvm_version = "13.*" %} {% set arrow_version = "8.*" %}