Skip to content

Commit

Permalink
Release v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
evestera committed Feb 15, 2019
1 parent 0a61527 commit ba54943
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@ matrix:
include:
- os: linux
rust: stable
env: TARGET=x86_64-unknown-linux-musl
env: TARGET=x86_64-unknown-linux-gnu
before_script: rustup target add $TARGET
addons:
apt:
packages:
- musl-tools
- libssl-dev
- os: osx
rust: stable
env: TARGET=x86_64-apple-darwin
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# json_typegen - Rust types from JSON samples

[![Travis Build Status](https://api.travis-ci.org/evestera/json_typegen.svg?branch=master)](https://travis-ci.org/evestera/json_typegen)
[![Appveyor build status](https://ci.appveyor.com/api/projects/status/github/evestera/json_typegen?svg=true)](https://ci.appveyor.com/project/BurntSushi/ripgrep)
[![crates.io](https://img.shields.io/crates/v/json_typegen.svg)](https://crates.io/crates/json_typegen)
[![docs.rs](https://docs.rs/json_typegen/badge.svg)](https://docs.rs/json_typegen/)

Expand Down
Empty file modified ci/before_deploy.sh
100644 → 100755
Empty file.
18 changes: 9 additions & 9 deletions ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@ set -ex
DIR="$(cd "$(dirname $0)/.." && pwd)"

cd "$DIR/json_typegen_shared"
cargo build --verbose
cargo test --verbose
cargo build --target "$TARGET" --verbose
cargo test --target "$TARGET" --verbose

cd "$DIR/json_typegen_cli"
cargo build --verbose
cargo test --verbose
cargo build --target "$TARGET" --verbose
cargo test --target "$TARGET" --verbose

cd "$DIR/json_typegen_web"
cargo build --verbose
cargo test --verbose
cargo build --target "$TARGET" --verbose
cargo test --target "$TARGET" --verbose

cd "$DIR/json_typegen"
cargo build --verbose
cargo test --verbose
cargo build --target "$TARGET" --verbose
cargo test --target "$TARGET" --verbose

cd "$DIR/json_typegen_demo"
cargo run --verbose
cargo run --target "$TARGET" --verbose
2 changes: 1 addition & 1 deletion json_typegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen"
version = "0.3.1"
version = "0.3.2"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
description = "Procedural macro that generates Rust types from JSON samples"
Expand Down
2 changes: 1 addition & 1 deletion json_typegen_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_cli"
version = "0.3.1"
version = "0.3.2"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
description = "Command line utility for generating Rust types from JSON samples"
Expand Down
2 changes: 1 addition & 1 deletion json_typegen_demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_demo"
version = "0.3.1"
version = "0.3.2"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion json_typegen_shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_shared"
version = "0.3.1"
version = "0.3.2"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
description = "Codegen from JSON samples. Not intended to be used directly. See repository for the intended crates."
Expand Down
2 changes: 1 addition & 1 deletion json_typegen_web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "json_typegen_web"
version = "0.3.1"
version = "0.3.2"
authors = ["Erik Vesteraas <erik@vestera.as>"]
license = "MIT/Apache-2.0"
publish = false
Expand Down

0 comments on commit ba54943

Please sign in to comment.