Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 32bf47e

Browse files
committed
Updating for v0.14.0 release
1 parent cd3638a commit 32bf47e

File tree

2 files changed

+12
-20
lines changed

2 files changed

+12
-20
lines changed

README.md

Lines changed: 9 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
A high productivity, full-stack web framework for the [Go language](http://www.golang.org).
66

7-
Current Version: 0.13.1 (2016-06-06)
7+
Current Version: 0.14.0 (2017-03-24)
88

99
**As of Revel 0.13.0, Go 1.4+ is required.**
1010

@@ -21,6 +21,13 @@ Create a new app and run it:
2121

2222
Open http://localhost:9000 in your browser and you should see "It works!"
2323

24+
25+
## Community
26+
27+
* [Gitter](https://gitter.im/revel/community)
28+
* [StackOverflow](http://stackoverflow.com/questions/tagged/revel)
29+
* [Google Groups](https://groups.google.com/forum/#!forum/revel-framework)
30+
2431
## Learn More
2532

2633
* [Manual, Samples, Godocs, etc](http://revel.github.io)
@@ -32,33 +39,18 @@ Open http://localhost:9000 in your browser and you should see "It works!"
3239
* [Contributing Code Guidelines](https://github.com/revel/revel/blob/master/CONTRIBUTING.md)
3340
* [Revel Contributors](https://github.com/revel/revel/graphs/contributors)
3441

35-
## Community
36-
37-
Join on [StackOverflow](http://stackoverflow.com/questions/tagged/revel), [IRC #revel](http://webchat.freenode.net/?channels=%23revel&uio=d4) and [Google Groups](https://groups.google.com/forum/#!forum/revel-framework)
38-
39-
* Report bugs [here](https://github.com/revel/revel/issues)
40-
* Answer questions of other community members (via [StackOverflow](http://stackoverflow.com/questions/tagged/revel), [Google Groups](https://groups.google.com/forum/#!forum/revel-framework) and [IRC](http://webchat.freenode.net/?channels=%23revel&uio=d4))
41-
* Give feedback on new feature discussions (via [GitHub Issues](https://github.com/revel/revel/issues) and [Google Groups](https://groups.google.com/forum/#!forum/revel-framework))
42-
* Propose your own ideas via [Google Groups](https://groups.google.com/forum/#!forum/revel-framework)
43-
4442

4543
## Gratitude
4644

4745
First and foremost, we'd like to thank the growing community of developers who enjoy using and contributing to Revel. Your patience, feedback, and moral support are vital to the ongoing development of Revel!
4846

49-
Also, thank you to those who have increased their level of involvement with Revel and revitalized the momentum of Revel:
50-
* [Jeeva](https://github.com/jeevatkm)
51-
* [Pedro](https://github.com/pedromorgan)
52-
* Many others who provided valuable Pull Requests, testing, and feedback.
53-
5447
Finally, we'd like to thank the professional organizations that have supported the development of Revel:
5548
* [Looking Glass](https://www.lookingglasscyber.com/)
56-
* [Surge](http://surgeforward.com/)
5749

5850

5951
## Announcements
6052

61-
View the [v0.13.0 release notes](https://github.com/revel/revel/releases/tag/v0.13.0)
53+
View the [v0.14.0 release notes](https://github.com/revel/revel/releases/tag/v0.14.0)
6254
for all of the relevant changes.
6355

6456
We are working on increasing the speed and quality of our releases. Your feedback has never been so valuable, please share your thoughts with us and help shape Revel!

version.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
// Copyright (c) 2012-2016 The Revel Framework Authors, All rights reserved.
1+
// Copyright (c) 2012-2017 The Revel Framework Authors, All rights reserved.
22
// Revel Framework source code and usage is governed by a MIT style
33
// license that can be found in the LICENSE file.
44

55
package revel
66

77
const (
88
// Version current Revel version
9-
Version = "0.14.0-dev"
9+
Version = "0.14.0"
1010

1111
// BuildDate latest commit/release date
12-
BuildDate = "TBD"
12+
BuildDate = "2017-03-24"
1313

1414
// MinimumGoVersion minimum required Go version for Revel
1515
MinimumGoVersion = ">= go1.4"

0 commit comments

Comments
 (0)