Skip to content

Commit

Permalink
Bump version to 3.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
matthid committed Jan 27, 2015
1 parent dff1242 commit fd31ddd
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Expand Up @@ -5,7 +5,7 @@
Just fork the project an send a pull request to discuss and merge the changes.
Please send the pull request against the `master` branch.
The branching model in http://nvie.com/posts/a-successful-git-branching-model/ is used.
However the naming differs: `develop`is called `master` and `master` is called `release` in RazorEngine.
However the naming differs: `develop`is called `master` and `master` is called `releases` in RazorEngine.

## Contributing Documentation

Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -9,10 +9,10 @@ Develop Branch (`master`)
[![Build Status](https://travis-ci.org/Antaris/RazorEngine.svg?branch=master)](https://travis-ci.org/Antaris/RazorEngine)
[![Build status](https://ci.appveyor.com/api/projects/status/39bi38wonhwolrgy/branch/master?svg=true)](https://ci.appveyor.com/project/Antaris/razorengine/branch/master)

Release Branch (`release`)
Release Branch (`releases`)

[![Build Status](https://travis-ci.org/Antaris/RazorEngine.svg?branch=release)](https://travis-ci.org/Antaris/RazorEngine)
[![Build status](https://ci.appveyor.com/api/projects/status/39bi38wonhwolrgy/branch/release?svg=true)](https://ci.appveyor.com/project/Antaris/razorengine/branch/release)
[![Build Status](https://travis-ci.org/Antaris/RazorEngine.svg?branch=releases)](https://travis-ci.org/Antaris/RazorEngine)
[![Build status](https://ci.appveyor.com/api/projects/status/39bi38wonhwolrgy/branch/releases?svg=true)](https://ci.appveyor.com/project/Antaris/razorengine/branch/releases)


## Quickstart
Expand Down
4 changes: 2 additions & 2 deletions buildConfig.fsx
Expand Up @@ -44,8 +44,8 @@ printfn "BUILDING VERSION: %s" version_nuget
// !!!!!!!!!!!!!!!!!!!
// UPDATE RELEASE NOTES AS WELL!
// !!!!!!!!!!!!!!!!!!!
let version_razor4 = "4.0.2.0"
let version_razor4_nuget = "4.0.2-beta1"
let version_razor4 = "4.0.3.0"
let version_razor4_nuget = "4.0.3-beta1"
let version_roslyn_nuget = "3.5.1-beta1"
let version_roslyn_razor4_nuget = "4.0.1-beta1"
let commitHash = Information.getCurrentSHA1(".")
Expand Down
1 change: 1 addition & 0 deletions doc/ReleaseNotes.md
@@ -1,5 +1,6 @@
### 3.5.3 / 4.0.2-beta1
* Fixed a SecurityException when the template is broken.
* RazorEngine is now compatible with ImpromptuInterface (thanks kipwilliams).

### 3.5.2 / 4.0.2-beta1
* If you use assemblies in your template which are not referenced in your hosting code
Expand Down
8 changes: 4 additions & 4 deletions src/SharedAssemblyInfo.cs
Expand Up @@ -4,11 +4,11 @@
[assembly: AssemblyCompanyAttribute("RazorEngine")]
[assembly: AssemblyProductAttribute("RazorEngine")]
[assembly: AssemblyCopyrightAttribute("Copyright � RazorEngine Project 2011-2014")]
[assembly: AssemblyVersionAttribute("3.5.2")]
[assembly: AssemblyFileVersionAttribute("3.5.2")]
[assembly: AssemblyInformationalVersionAttribute("3.5.2")]
[assembly: AssemblyVersionAttribute("3.5.3")]
[assembly: AssemblyFileVersionAttribute("3.5.3")]
[assembly: AssemblyInformationalVersionAttribute("3.5.3")]
namespace System {
internal static class AssemblyVersionInformation {
internal const string Version = "3.5.2";
internal const string Version = "3.5.3";
}
}

0 comments on commit fd31ddd

Please sign in to comment.