Skip to content

Commit 82f20b4

Browse files
committed
release v0.16.0
1 parent ef98b4e commit 82f20b4

File tree

4 files changed

+82
-3
lines changed

4 files changed

+82
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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.16.0-dev (2017-05-11)
7+
Current Version: 0.16.0 (2017-06-06)
88

99
**As of Revel 0.15.0, Go 1.7+ is required.**
1010

README.md.orig

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Revel Framework
2+
3+
[![Build Status](https://secure.travis-ci.org/revel/revel.svg?branch=master)](http://travis-ci.org/revel/revel) [![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
4+
5+
A high productivity, full-stack web framework for the [Go language](http://www.golang.org).
6+
7+
<<<<<<< HEAD
8+
Current Version: 0.16.0-dev (2017-05-11)
9+
=======
10+
Current Version: 0.15.0 (2017-05-11)
11+
>>>>>>> master
12+
13+
**As of Revel 0.15.0, Go 1.7+ is required.**
14+
15+
## Quick Start
16+
17+
Install revel framework:
18+
19+
go get -u github.com/revel/cmd/revel
20+
21+
Create a new app and run it:
22+
23+
revel new github.com/myaccount/my-app
24+
revel run github.com/myaccount/my-app
25+
26+
Open http://localhost:9000 in your browser and you should see "It works!"
27+
28+
29+
## Community
30+
31+
* [Gitter](https://gitter.im/revel/community)
32+
* [StackOverflow](http://stackoverflow.com/questions/tagged/revel)
33+
34+
## Learn More
35+
36+
* [Manual, Samples, Godocs, etc](http://revel.github.io)
37+
* [Apps using Revel](https://github.com/revel/revel/wiki/Apps-in-the-Wild)
38+
* [Articles Featuring Revel](https://github.com/revel/revel/wiki/Articles)
39+
40+
## Contributing
41+
42+
* [Contributing Code Guidelines](https://github.com/revel/revel/blob/master/CONTRIBUTING.md)
43+
* [Revel Contributors](https://github.com/revel/revel/graphs/contributors)
44+
45+
46+
## Gratitude
47+
48+
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!
49+
50+
Finally, we'd like to thank the professional organizations that have supported the development of Revel:
51+
* [Looking Glass](https://www.lookingglasscyber.com/)
52+
53+
54+
## Announcements
55+
56+
View the [v0.15.0 release notes](https://github.com/revel/revel/releases/tag/v0.15.0)
57+
for all of the relevant changes.
58+
59+
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ package revel
66

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

1111
// BuildDate latest commit/release date
12-
BuildDate = "2017-05-11"
12+
BuildDate = "2017-06-06"
1313

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

version.go.orig

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright (c) 2012-2017 The Revel Framework Authors, All rights reserved.
2+
// Revel Framework source code and usage is governed by a MIT style
3+
// license that can be found in the LICENSE file.
4+
5+
package revel
6+
7+
const (
8+
// Version current Revel version
9+
<<<<<<< HEAD
10+
Version = "0.16.0-dev"
11+
=======
12+
Version = "0.15.0"
13+
>>>>>>> master
14+
15+
// BuildDate latest commit/release date
16+
BuildDate = "2017-05-11"
17+
18+
// MinimumGoVersion minimum required Go version for Revel
19+
MinimumGoVersion = ">= go1.7"
20+
)

0 commit comments

Comments
 (0)