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

Commit

Permalink
chore(release): 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Jan 17, 2023
1 parent 288a3ed commit cc502fe
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Release Notes
---

## [1.6.0](https://github.com/arxlang/arx/compare/1.5.0...1.6.0) (2023-01-17)


### Features

* Add llvm IR output ([#79](https://github.com/arxlang/arx/issues/79)) ([288a3ed](https://github.com/arxlang/arx/commit/288a3ed4f6bf97d9d957e42c4d62d021cc1bc408))

# [1.5.0](https://github.com/arxlang/arx/compare/1.4.2...1.5.0) (2022-12-17)


Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.5.0 # semantic-release
PROJECT_NUMBER = 1.6.0 # 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
Expand Down
2 changes: 1 addition & 1 deletion conda/recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "arx" %}
{% set version = "1.5.0" %} # semantic-release
{% set version = "1.6.0" %} # semantic-release
{% set llvm_version = "15.*" %}
{% set arrow_version = "10.*" %}

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('arx', 'cpp', 'c',
license : 'Apache-2.0',
version : '1.5.0', # semantic-release
version : '1.6.0', # semantic-release
default_options : [
'warning_level=everything',
'cpp_std=c++20',
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "parser.h"
#include "utils.h"

std::string ARX_VERSION = "1.5.0"; // semantic-release
std::string ARX_VERSION = "1.6.0"; // semantic-release
extern std::string INPUT_FILE;
extern std::string OUTPUT_FILE;
extern bool INPUT_FROM_STDIN;
Expand Down

0 comments on commit cc502fe

Please sign in to comment.