Skip to content

Commit

Permalink
Prep for 0.5.0 release (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwithan8 authored Oct 4, 2022
1 parent 3c19d5d commit 92b7189
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# CHANGELOG

## Next Release
## v0.5.0 (2022-10-04)

- New feature: Set expiration time for interactions (how long since it was recorded should an interaction be considered valid)
- Can determine what to do if a matching interaction is considered invalid:
- Warn the user, but proceed with the interaction
- Throw an exception
- Automatically re-record (cannot be used in `Replay` mode)
- New feature: Pass in a custom ILogger instance to EasyVCR to funnel log messages into your own logging setup (fallback: logs to console)
- Improvement: Clarify that Delay may not be exact

## v0.4.0 (2022-06-13)

Expand Down
2 changes: 1 addition & 1 deletion EasyVCR.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>EasyVCR</id>
<title>EasyVCR</title>
<version>0.4.0</version>
<version>0.5.0</version>
<authors>EasyPost</authors>
<owners>EasyPost</owners>
<projectUrl>https://github.com/EasyPost/easyvcr-csharp</projectUrl>
Expand Down
6 changes: 3 additions & 3 deletions EasyVCR/Properties/VersionInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Reflection;

// Version information for an assembly must follow semantic versioning
[assembly: AssemblyVersion("0.4.0")]
[assembly: AssemblyFileVersion("0.4.0")]
[assembly: AssemblyInformationalVersion("0.4.0")]
[assembly: AssemblyVersion("0.5.0")]
[assembly: AssemblyFileVersion("0.5.0")]
[assembly: AssemblyInformationalVersion("0.5.0")]

0 comments on commit 92b7189

Please sign in to comment.