Skip to content

Commit

Permalink
chore: Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kattrali committed Oct 2, 2017
1 parent 9e760d4 commit 964f008
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Bugsnag.nuspec
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>Bugsnag</id>
<version>1.3.0.0</version>
<version>1.4.0.0</version>
<title>Bugsnag .NET Notifier</title>
<authors>snmaynard</authors>
<owners>snmaynard</owners>
Expand Down
2 changes: 1 addition & 1 deletion BugsnagMono.nuspec
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>BugsnagMono</id>
<version>1.3.0.0</version>
<version>1.4.0.0</version>
<title>Bugsnag .NET Notifier for Mono</title>
<authors>snmaynard</authors>
<owners>snmaynard</owners>
Expand Down
24 changes: 20 additions & 4 deletions CHANGELOG.md
@@ -1,11 +1,27 @@
1.2.0
=====
# Changelog

## 1.4.0

### Enhancements

* Track whether an exception was captured automatically

## 1.3.0

### Enhancements

* Support offline storage

## 1.2.0

### Enhancements

* Add async notify support


1.1.0
=====
## 1.1.0

### Enhancements

* .NET 3.5 Support
* Azure Support
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Expand Up @@ -13,6 +13,7 @@ Releasing

* Update the CHANGELOG.md
* Update the version of the build in `appveyor.yml`, located in the root directory.
* Update the version of the build in `build.fsx`, located in the root directory.
* Update the version of the build in `Bugsnag.nuspec` and `BugsnagMono.nuspec`, located in the root directory.
* Update the version of the build in `CommonVersionInfo.cs`, located in the `src/Common`.
* Push the change, this should kick off a build.
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Expand Up @@ -3,7 +3,7 @@
#---------------------------------#

# version format
version: 1.3.0.{build}
version: 1.4.0.{build}

#---------------------------------#
# build configuration #
Expand Down
2 changes: 1 addition & 1 deletion build.fsx
Expand Up @@ -4,7 +4,7 @@ open Fake.Testing
open Fake.Git

let solution = "Bugsnag.sln"
let version = "1.3.0.0"
let version = "1.4.0.0"
let buildConfigs = ["Release"; "MonoRelease"]
let tests = !! "test/bin/**/Bugsnag.Test.dll"
let buildDir = "./build/"
Expand Down
4 changes: 2 additions & 2 deletions src/Common/CommonVersionInfo.cs
@@ -1,4 +1,4 @@
using System.Reflection;

[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]

0 comments on commit 964f008

Please sign in to comment.