Skip to content

Commit 54f435d

Browse files
author
Peter Kieltyka
committed
Release v2.0.0 with support for go1.8, http2 and http.Pusher
1 parent 49a0ea6 commit 54f435d

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

3-
## v2.0.0rc1 (2016-07-26)
3+
## v2.0.0 (2017-01-06)
4+
5+
- After many months of v2 being in an RC state with many companies and users running it in
6+
production, the inclusion of some improvements to the middlewares, we are very pleased to
7+
announce v2.0.0 of chi.
8+
9+
10+
## v2.0.0-rc1 (2016-07-26)
411

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

30+
2331
## v1.0.0 (2016-07-01)
2432

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

35+
2736
## v0.9.0 (2016-03-31)
2837

2938
- Reuse context objects via sync.Pool for zero-allocation routing [#33](https://github.com/pressly/chi/pull/33)

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ handlers (stdlib-only), developer productivity, and deconstructing a large syste
1717
parts. The core router `github.com/pressly/chi` is quite small (less than 1000 LOC), but we've also
1818
included some useful/optional subpackages: `middleware`, `render` and `docgen`. We hope you enjoy it too!
1919

20+
`go get -u github.com/pressly/chi`
21+
2022

2123
## Features
2224

0 commit comments

Comments
 (0)