Skip to content

Commit

Permalink
Merge branch 'release/v1.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
runeimp committed Jan 6, 2020
2 parents bf228a9 + 4c4949f commit 3e80463
Show file tree
Hide file tree
Showing 9 changed files with 1,237 additions and 28 deletions.
70 changes: 70 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
project_name: caseit
env:
- GO111MODULE=on
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- darwin
- freebsd
- linux
- netbsd
- openbsd
- windows
ignore:
- goos: darwin
goarch: 386
ldflags:
- -s -w
main: ./cmd/caseit/main.go
archives:
- files:
- CHANGELOG.md
- LICENSE
- README.md
format_overrides:
- goos: windows
format: zip
replacements:
386: i386
amd64: x86_64
darwin: macos
# darwin: macOS
# freebsd: FreeBSD
# linux: Linux
# netbsd: NetBSD
# openbsd: OpenBSD
# caseit: CaseIt
# windows: Windows
wrap_in_directory: true
nfpms:
# note that this is an array of nfpm configs
- formats:
- deb
- rpm
# ID of the nfpm config, must be unique.
# Defaults to "default".
id: caseit
homepage: "https://github.com/runeimp/caseit"
license: MIT
replacements:
386: i386
amd64: x86_64
darwin: macos
checksum:
name_template: 'checksums.txt'
# signs:
# - artifacts: checksum
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ChangeLog:
==========

v1.0.0
------

Initial release

* Added all planned casing options
* Added all planned command line options

4 changes: 2 additions & 2 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ build:


# Run CaseIt
run +args='"Case the words"':
run cmd="word" arg="-s" +args='" ALL CAPS to go thru 1--6 of the 1/2 with the correct CIA ID over GRPC"':
@just _term-wipe
go run cmd/caseit/main.go {{args}}
go run cmd/caseit/main.go {{cmd}} {{arg}} {{args}}


_term-wipe:
Expand Down
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 RuneImp

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Loading

0 comments on commit 3e80463

Please sign in to comment.