Skip to content

Commit

Permalink
prepare for 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumeduhamel committed Nov 23, 2023
1 parent 2523240 commit c421f21
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## [1.5.0] - 2023-11-23
### Added
- debugger output
- `match_detach` instruction
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.PHONY: all js merlin build build-deps run test clean

# --------------------------------------------------------------------
all: build compiler
all: build js compiler

build:
@dune build
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ubuntu:20.04
RUN apt-get update && apt-get -y install wget netbase
WORKDIR /archetype
RUN wget https://github.com/completium/archetype-lang/releases/download/1.4.3/archetype-x64-linux-rev3
RUN chmod +x /archetype/archetype-x64-linux-rev3
ENTRYPOINT ["/archetype/archetype-x64-linux-rev3"]
RUN wget https://github.com/completium/archetype-lang/releases/download/1.5.0/archetype-x64-linux
RUN chmod +x /archetype/archetype-x64-linux
ENTRYPOINT ["/archetype/archetype-x64-linux"]
4 changes: 2 additions & 2 deletions npm-package/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion npm-package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@completium/archetype",
"version": "0.4.18",
"version": "1.0.0",
"description": "Archetype is a general purpose language to develop Smart Contracts on the Tezos blockchain.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# --------------------------------------------------------------------
.PHONY: all run clean merlin __force__

PROFILE ?= dev
PROFILE ?= release
COMPILER := compiler.exe

# --------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/options.ml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ let string_to_target_lang = function
| "debug-trace" -> DebugTrace
| v -> raise (UnknownTarget v)

let version = "1.4.4-rc1"
let version = "1.5.0"
let url = "https://archetype-lang.org/"

let target = ref (Michelson : target_lang)
Expand Down

0 comments on commit c421f21

Please sign in to comment.