Skip to content
This repository was archived by the owner on Jun 26, 2023. It is now read-only.

Commit cc502fe

Browse files
chore(release): 1.6.0
1 parent 288a3ed commit cc502fe

5 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Release Notes
22
---
33

4+
## [1.6.0](https://github.com/arxlang/arx/compare/1.5.0...1.6.0) (2023-01-17)
5+
6+
7+
### Features
8+
9+
* Add llvm IR output ([#79](https://github.com/arxlang/arx/issues/79)) ([288a3ed](https://github.com/arxlang/arx/commit/288a3ed4f6bf97d9d957e42c4d62d021cc1bc408))
10+
411
# [1.5.0](https://github.com/arxlang/arx/compare/1.4.2...1.5.0) (2022-12-17)
512

613

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = ArxLang
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 1.5.0 # semantic-release
51+
PROJECT_NUMBER = 1.6.0 # semantic-release
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

conda/recipe/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "arx" %}
2-
{% set version = "1.5.0" %} # semantic-release
2+
{% set version = "1.6.0" %} # semantic-release
33
{% set llvm_version = "15.*" %}
44
{% set arrow_version = "10.*" %}
55

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('arx', 'cpp', 'c',
22
license : 'Apache-2.0',
3-
version : '1.5.0', # semantic-release
3+
version : '1.6.0', # semantic-release
44
default_options : [
55
'warning_level=everything',
66
'cpp_std=c++20',

src/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#include "parser.h"
2929
#include "utils.h"
3030

31-
std::string ARX_VERSION = "1.5.0"; // semantic-release
31+
std::string ARX_VERSION = "1.6.0"; // semantic-release
3232
extern std::string INPUT_FILE;
3333
extern std::string OUTPUT_FILE;
3434
extern bool INPUT_FROM_STDIN;

0 commit comments

Comments
 (0)