From 54f435d539226571eab1987ed862b1c0fdfdc892 Mon Sep 17 00:00:00 2001 From: Peter Kieltyka Date: Fri, 6 Jan 2017 15:47:52 -0500 Subject: [PATCH] Release v2.0.0 with support for go1.8, http2 and http.Pusher --- CHANGELOG.md | 11 ++++++++++- README.md | 2 ++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d065e5da..754cd2f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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) diff --git a/README.md b/README.md index e8b13075..6fe616f8 100644 --- a/README.md +++ b/README.md @@ -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