浏览代码

Updates CHANGELOG

Manu Mtz-Almeida 10 年之前
父节点
当前提交
86824a640c
共有 2 个文件被更改,包括 9 次插入1 次删除
  1. 8 0
      CHANGELOG.md
  2. 1 1
      gin.go

+ 8 - 0
CHANGELOG.md

@@ -3,6 +3,14 @@
 ###Gin 1.0rc2 (...)
 ###Gin 1.0rc2 (...)
 
 
 - [PERFORMANCE] Fast path for writting Content-Type.
 - [PERFORMANCE] Fast path for writting Content-Type.
+- [PERFORMANCE] Much faster 404 routing
+- [PERFORMANCE] Allocation optimizations
+- [PERFORMANCE] Faster root tree lookup
+- [NEW] Benchmarks suite
+- [FIX] Binding multipart form
+- [FIX] Crash when binding non struct object in Context.
+- [FIX] RunTLS() implementation
+- [FIX] Logger() unit tests
 - [FIX] Better approach to avoid directory listing in StaticFS()
 - [FIX] Better approach to avoid directory listing in StaticFS()
 - [FIX] Context.ClientIP() always returns the IP with trimmed spaces.
 - [FIX] Context.ClientIP() always returns the IP with trimmed spaces.
 - [FIX] Better warning when running in debug mode.
 - [FIX] Better warning when running in debug mode.

+ 1 - 1
gin.go

@@ -74,7 +74,7 @@ func New() *Engine {
 		RedirectTrailingSlash:  true,
 		RedirectTrailingSlash:  true,
 		RedirectFixedPath:      false,
 		RedirectFixedPath:      false,
 		HandleMethodNotAllowed: false,
 		HandleMethodNotAllowed: false,
-		trees: make(methodTrees, 0, 6),
+		trees: make(methodTrees, 0, 5),
 	}
 	}
 	engine.RouterGroup.engine = engine
 	engine.RouterGroup.engine = engine
 	engine.pool.New = func() interface{} {
 	engine.pool.New = func() interface{} {