Skip to content

Commit

Permalink
1.2.0 release notes and version update
Browse files Browse the repository at this point in the history
  • Loading branch information
mediocretes committed Aug 17, 2016
1 parent 0ae45e2 commit b159af1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
### 1.2.0 [August 17, 2016]
* Make agent more correctly reject metric names with characters not supported by the service - [A-Za-z0-9] instead of \d\w
* Change Time() and TimeMs() to use more accurate counters to get more precise measurements with very fast functions

### 1.1.0 [August 8, 2016]
* Make agent string more consistent with other Instrumental agents

Expand Down
2 changes: 1 addition & 1 deletion Instrumental.nuspec
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>instrumental_agent</id>
<version>1.1.0</version>
<version>1.2.0</version>
<authors>Nathan Acuff</authors>
<owners>Nathan Acuff</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
Expand Down
2 changes: 1 addition & 1 deletion src/Agent.cs
Expand Up @@ -28,7 +28,7 @@ public class Agent
/// <summary>
/// The agent version, according to the agent.
/// </summary>
public static readonly String AgentVersion = "1.1.0";
public static readonly String AgentVersion = "1.2.0";

/// <summary>
/// Enable/disable the agent. This enables you to block sending of metrics to Instrumental without having to change your code.
Expand Down
4 changes: 2 additions & 2 deletions src/Properties/AssemblyInfo.cs
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1.0")]
[assembly: AssemblyFileVersion("1.1.0")]
[assembly: AssemblyVersion("1.2.0")]
[assembly: AssemblyFileVersion("1.2.0")]

0 comments on commit b159af1

Please sign in to comment.