Skip to content

Commit

Permalink
v0.2.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-szabo committed Feb 15, 2019
1 parent 831fa08 commit 56c01b7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ commands:
- run:
name: Release
command: |
CGO_ENABLED=0 GOOS=darwin GOARCH=386 go build -ldflags "-extflags static" -o build/stoml_darwin_386 .
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -ldflags "-extflags static" -o build/stoml_darwin_amd64 .
CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -ldflags "-extflags static" -o build/stoml_linux_386 .
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-extflags static" -o build/stoml_linux_amd64 .
CGO_ENABLED=0 GOOS=windows GOARCH=386 go build -ldflags "-extflags static" -o build/stoml_windows_386 .
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags "-extflags static" -o build/stoml_windows_amd64 .
CGO_ENABLED=0 GOOS=darwin GOARCH=386 go build -ldflags "-extldflags static" -o build/stoml_darwin_386 .
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -ldflags "-extldflags static" -o build/stoml_darwin_amd64 .
CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -ldflags "-extldflags static" -o build/stoml_linux_386 .
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags "-extldflags static" -o build/stoml_linux_amd64 .
CGO_ENABLED=0 GOOS=windows GOARCH=386 go build -ldflags "-extldflags static" -o build/stoml_windows_386 .
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -ldflags "-extldflags static" -o build/stoml_windows_amd64 .
/bin/bash .circleci/release.bash
# a reusable executor
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ STOML is a simple TOML file parser for Linux Shell (bash, ksh, csh, etc).
The purpose is to easily parse INI files.
TOML is a generalized INI file, so a simplified TOML parser can get this done.

Tom's Obvious, Minimal Language is defined [here](https://github.com/toml-lang/toml).

## How to get it
Check the [releases](https://github.com/freshautomations/stoml/releases) page.

Expand Down

0 comments on commit 56c01b7

Please sign in to comment.