Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

Commit

Permalink
Release version 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Z committed Jan 26, 2021
1 parent e858617 commit 8b8ec0d
Show file tree
Hide file tree
Showing 19 changed files with 31 additions and 31 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The Zinc changelog

## Version next (2021-XX-XX)
## Version 0.2.2 (2021-01-26)

#### Compiler

Expand All @@ -14,7 +14,7 @@

#### Zargo

- changed interface descriptions and help messages
- fixed interface descriptions and help messages

#### Book

Expand Down
24 changes: 12 additions & 12 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ RUN apt-get install --yes \
RUN dos2unix 'docker/build.sh'

# Main build script, expects the Zinc version
RUN /bin/bash 'docker/build.sh' '0.2.1'
RUN /bin/bash 'docker/build.sh' '0.2.2'
2 changes: 1 addition & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "zinc-syntax-highlighting",
"displayName": "Zinc Syntax Highlighting",
"description": "Zinc Syntax Highlighting",
"version": "0.2.1",
"version": "0.2.2",
"publisher": "hedgar2017",
"engines": {
"vscode": "^1.38.0"
Expand Down
2 changes: 1 addition & 1 deletion zandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zandbox"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion zandbox/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# From the root directory:
# DOCKER_BUILDKIT=1 docker build -t matterlabs/zandbox -f zandbox/docker/Dockerfile .
# docker push matterlabs/zandbox:0.2.1
# docker push matterlabs/zandbox:0.2.2

FROM rust:1.48 as builder

Expand Down
2 changes: 1 addition & 1 deletion zandbox/src/zandbox/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async fn main() -> anyhow::Result<()> {
App::new()
.wrap(middleware::Logger::default())
.wrap(middleware::DefaultHeaders::new().content_type())
.wrap(actix_cors::Cors::default())
.wrap(actix_cors::Cors::permissive())
.app_data(web::JsonConfig::default().limit(zinc_const::limit::JSON_PAYLOAD))
.app_data(data.clone())
.configure(zandbox::configure)
Expand Down
2 changes: 1 addition & 1 deletion zargo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zargo"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion zinc-book/book.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[book]
title = "Zinc v0.2.1"
title = "Zinc v0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
"Alex Gluchowski <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion zinc-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-compiler"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
"Alexander Movchan <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion zinc-const/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-const"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion zinc-lexical/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-lexical"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion zinc-logger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-logger"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
"Alexander Movchan <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion zinc-math/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-math"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
"Alexander Movchan <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion zinc-project/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-project"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion zinc-syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-syntax"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion zinc-tester/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-tester"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
]
Expand Down
2 changes: 1 addition & 1 deletion zinc-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-types"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
"Alexander Movchan <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion zinc-vm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zinc-vm"
version = "0.2.1"
version = "0.2.2"
authors = [
"Alex Zarudnyy <[email protected]>",
"Alexander Movchan <[email protected]>",
Expand Down

0 comments on commit 8b8ec0d

Please sign in to comment.