Skip to content

Commit

Permalink
Release v2.0.0 with support for go1.8, http2 and http.Pusher
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Kieltyka committed Jan 6, 2017
1 parent 49a0ea6 commit 54f435d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog

## v2.0.0rc1 (2016-07-26)
## v2.0.0 (2017-01-06)

- After many months of v2 being in an RC state with many companies and users running it in
production, the inclusion of some improvements to the middlewares, we are very pleased to
announce v2.0.0 of chi.


## v2.0.0-rc1 (2016-07-26)

- Huge update! chi v2 is a large refactor targetting Go 1.7+. As of Go 1.7, the popular
community `"net/context"` package has been included in the standard library as `"context"` and
Expand All @@ -20,10 +27,12 @@ stdlib HTTP handlers and middlwares.
2. Use `chi.URLParam(r *http.Request, paramKey string) string`
or `URLParamFromCtx(ctx context.Context, paramKey string) string` to access a url parameter value


## v1.0.0 (2016-07-01)

- Released chi v1 stable https://github.com/pressly/chi/tree/v1.0.0 for Go 1.6 and older.


## v0.9.0 (2016-03-31)

- Reuse context objects via sync.Pool for zero-allocation routing [#33](https://github.com/pressly/chi/pull/33)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ handlers (stdlib-only), developer productivity, and deconstructing a large syste
parts. The core router `github.com/pressly/chi` is quite small (less than 1000 LOC), but we've also
included some useful/optional subpackages: `middleware`, `render` and `docgen`. We hope you enjoy it too!

`go get -u github.com/pressly/chi`


## Features

Expand Down

0 comments on commit 54f435d

Please sign in to comment.