Skip to content

Commit

Permalink
v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
moul committed Apr 27, 2016
1 parent 94e78d2 commit 5eaaf15
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .goxc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@
"go-vet"
],
"MainDirsExclude": "vendor,Godeps,testdata",
"PackageVersion": "2.2.0-dev",
"PackageVersion": "2.3.0",
"ConfigVersion": "0.9"
}
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ USAGE:
assh [global options] command [command options] [arguments...]

VERSION:
2.2.0 (HEAD)
2.3.0 (HEAD)

AUTHOR(S):
Manfred Touron <https://github.com/moul/advanced-ssh-config>
Expand All @@ -269,14 +269,16 @@ COMMANDS:
proxy Connect to host SSH socket, used by ProxyCommand
build Build .ssh/config
info Display system-wide information
wrapper Initialize assh, then run ssh/scp/rsync...
help, h Shows a list of commands or help for one command

GLOBAL OPTIONS:
--debug, -D Enable debug mode [$ASSH_DEBUG]
--verbose, -V Enable verbose mode
--help, -h show help
--version, -v print the version
```
--debug, -D Enable debug mode [$ASSH_DEBUG]
--verbose, -V Enable verbose mode
--help, -h show help
--generate-bash-completion
--version, -v print the version
```
## Install
Expand Down Expand Up @@ -334,7 +336,7 @@ With the wrapper, `ssh` will *always* be called with an updated `~/.ssh/config`

## Changelog

### master (unreleased)
### v2.3.0 (2016-04-27)

* Add wrapper and `known_hosts` support to handle *advanced patterns* ([#122](https://github.com/moul/advanced-ssh-config/issues/122))
* Add build information in .ssh/config header ([#49](https://github.com/moul/advanced-ssh-config/issues/49))
Expand All @@ -349,7 +351,7 @@ With the wrapper, `ssh` will *always* be called with an updated `~/.ssh/config`
* Various documentation improvements ([@ashmatadeen](https://github.com/ashmatadeen), [@loliee](https://github.com/loliee), [@cerisier](https://github.com/cerisier))
* Support of new SSH configuration fields (`AskPassGUI`, `GSSAPIClientIdentity`, `GSSAPIKeyExchange`, `GSSAPIRenewalForcesRekey`, `GSSAPIServerIdentity`, `GSSAPITrustDns`, `KeychainIntegration`)

[Full commits list](https://github.com/moul/advanced-ssh-config/compare/v2.2.0...master)
[Full commits list](https://github.com/moul/advanced-ssh-config/compare/v2.2.0...v2.3.0)

### v2.2.0 (2016-02-03)

Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var GITCOMMIT string

func init() {
// Version should be updated by hand at each release
VERSION = "2.2.0-dev"
VERSION = "2.3.0"
// GitCommit will be overwritten automatically by the build system
GITCOMMIT = "HEAD"
}

0 comments on commit 5eaaf15

Please sign in to comment.