Skip to content

Commit

Permalink
Prepare release 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
phmatray committed Mar 11, 2023
1 parent 46c8707 commit d94714c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<!-- Versioning -->
<!-- https://saebamini.com/how-to-version-your-net-nuget-packages-libraries-and-assemblies-azure-yaml-pipelines-example-using-net-core-cli/ -->
<PropertyGroup>
<Version>0.1.5</Version>
<AssemblyVersion>0.1.5</AssemblyVersion>
<FileVersion>0.1.5</FileVersion>
<InformationalVersion>0.1.5</InformationalVersion>
<Version>0.1.6</Version>
<AssemblyVersion>0.1.6</AssemblyVersion>
<FileVersion>0.1.6</FileVersion>
<InformationalVersion>0.1.6</InformationalVersion>
</PropertyGroup>
</Project>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ dotnet add package Atypical.VirtualFileSystem
or by adding a package reference to your project file:

```xml
<PackageReference Include="Atypical.VirtualFileSystem" Version="0.1.5" />
<PackageReference Include="Atypical.VirtualFileSystem" Version="0.1.6" />
```

### 📁 From source
Expand Down Expand Up @@ -151,7 +151,7 @@ IVirtualFileSystem vfs = new VFS()
.CreateFile("world/themyscira.txt");

// get the string representation of the virtual file system
string tree = vfs.ToString();
string tree = vfs.GetTree();
```

## 🤝 Contributing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@
<RepositoryBranch>main</RepositoryBranch>
<PackageReleaseNotes>
## Changes
- Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0 @dependabot (#31)
- Bump FluentAssertions from 6.9.0 to 6.10.0 @dependabot (#30)
- Fix readme file on NuGet.org @phmatray (#29)
- Move commands and queries in separate files
- Get a summary from the ToString method @phmatray (#35)
- Add some unit tests @phmatray (#34)
- Add method to IVirtualFileSystem + comments and test @phmatray (#33)
- Create Directory.Build.props @phmatray (#32)
</PackageReleaseNotes>
</PropertyGroup>

Expand Down

0 comments on commit d94714c

Please sign in to comment.