Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Buhr committed Nov 26, 2014
1 parent c469649 commit e3958c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ Tyk offers powerful, yet lightweight features that allow fine gained control ove
* **API Versioning** - API Versions can be easily set and deprecated at a specific time and date
* **Blacklist/Whitelist/Ignored endpoint access** - Enforce strict security models on a version-by-version basis to your access points
* **Analytics logging** - Record detailed usage data on who is using your API's (raw data only)
* **Webhooks** - Trigger webhooks against events such as Quota Violations and Authentication failures
* **IP Whitelisting** - Block access to non-trusted IP addresses for more secure interactions
* **Zero downtime restarts** - Tyk configurations can be altered dynamically and the service restarted without affecting any active request

Tyk is written in Go, which makes it fast and easy to set up. Its only dependencies are a Mongo database (for analytics) and Redis,
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const (
// Display introductory details
func intro() {
fmt.Print("\n\n")
fmt.Println(goterm.Bold(goterm.Color("Tyk.io Gateway API v1.0", goterm.GREEN)))
fmt.Println(goterm.Bold(goterm.Color("Tyk.io Gateway API v1.2.1", goterm.GREEN)))
fmt.Println(goterm.Bold(goterm.Color("=======================", goterm.GREEN)))
fmt.Print("Copyright Jively Ltd. 2014")
fmt.Print("\nhttp://www.tyk.io\n\n")
Expand Down Expand Up @@ -287,7 +287,7 @@ func init() {
`

arguments, err := docopt.Parse(usage, nil, true, "v1.0", false)
arguments, err := docopt.Parse(usage, nil, true, "v1.2.1", false)
if err != nil {
log.Println("Error while parsing arguments.")
log.Fatal(err)
Expand Down

0 comments on commit e3958c7

Please sign in to comment.