Skip to content

Commit

Permalink
Merge pull request #2 from arrow2nd/develop
Browse files Browse the repository at this point in the history
v1.1.1
  • Loading branch information
arrow2nd committed May 31, 2022
2 parents bbb4c40 + ec6e96a commit 94a5af9
Show file tree
Hide file tree
Showing 4 changed files with 76 additions and 15 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## [Unreleased]

## [1.1.1] - 2022-05-31

### Security

- 依存関係を更新

## [1.1.0] - 2021-12-20

### Added
Expand All @@ -16,5 +22,6 @@

- リリースしました!

[unreleased]: https://github.com/arrow2nd/codic-cli/compare/v1.1.0...HEAD
[unreleased]: https://github.com/arrow2nd/codic-cli/compare/v1.1.1...HEAD
[1.1.1]: https://github.com/arrow2nd/codic-cli/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/arrow2nd/codic-cli/compare/v1.0.0...v1.1.0
2 changes: 1 addition & 1 deletion cmd/constants.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cmd

// Version バージョン
const Version = "1.1.0"
const Version = "1.1.1"
28 changes: 15 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,34 @@ go 1.17

require (
github.com/arrow2nd/godic v1.1.0
github.com/spf13/cobra v1.3.0
github.com/spf13/viper v1.10.1
github.com/spf13/cobra v1.4.0
github.com/spf13/viper v1.12.0
)

require (
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/pelletier/go-toml/v2 v2.0.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)

require (
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect
github.com/chzyer/readline v1.5.0 // indirect
github.com/fatih/color v1.13.0
github.com/fsnotify/fsnotify v1.5.1 // indirect
github.com/fsnotify/fsnotify v1.5.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/magiconair/properties v1.8.5 // indirect
github.com/manifoldco/promptui v0.9.0 // indirect
github.com/mitchellh/mapstructure v1.4.3 // indirect
github.com/pelletier/go-toml v1.9.4 // indirect
github.com/spf13/afero v1.6.0 // indirect
github.com/spf13/cast v1.4.1 // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/manifoldco/promptui v0.9.0
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/spf13/afero v1.8.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
github.com/subosito/gotenv v1.3.0 // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/ini.v1 v1.66.2 // indirect
gopkg.in/ini.v1 v1.66.6 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)

0 comments on commit 94a5af9

Please sign in to comment.