Skip to content

Commit d948c8f

Browse files
committed
Release 3.1.0
1 parent edcdf9e commit d948c8f

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.markdown

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## master (unreleased)
44

5+
## 3.1.0
6+
7+
* [#182](https://github.com/rails/web-console/pull/182) Let `#console` live in `Kernel` ([@gsamokovarov])
8+
* [#181](https://github.com/rails/web-console/pull/181) Log internal Web Console errors ([@gsamokovarov])
9+
* [#180](https://github.com/rails/web-console/pull/180) Autoload Web Console constants for faster Rails boot time ([@schneems])
10+
511
## 3.0.0
612

713
* [#173](https://github.com/rails/web-console/pull/173) Revert "Change config.development_only default until 4.2.4 is released" ([@gsamokovarov])
@@ -55,3 +61,5 @@
5561
[@parterburn]: https://github.com/parterburn
5662
[@sh19910711]: https://github.com/sh19910711
5763
[@frenesim]: https://github.com/frenesim
64+
[@herminiotorres]: https://github.com/herminiotorres
65+
[@schneems]: https://github.com/schneems

README.markdown

+4-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,10 @@ class PostsController < ApplicationController
6767
end
6868
```
6969

70-
Only one `console` invocation is allowed per request. If you happen to have
71-
multiple ones, a `WebConsole::DoubleRenderError` is raised.
70+
The method is defined in `Kernel` and you can invoke it any application code.
71+
72+
Only one `console` invocation is allowed once per request. If you happen to
73+
have multiple ones, a `WebConsole::DoubleRenderError` will be raised.
7274

7375
## Configuration
7476

lib/web_console/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module WebConsole
2-
VERSION = '3.0.0'
2+
VERSION = '3.1.0'
33
end

0 commit comments

Comments
 (0)