Skip to content

Commit d94714c

Browse files
committed
Prepare release 0.1.6
1 parent 46c8707 commit d94714c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Directory.Build.props

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<!-- Versioning -->
1111
<!-- https://saebamini.com/how-to-version-your-net-nuget-packages-libraries-and-assemblies-azure-yaml-pipelines-example-using-net-core-cli/ -->
1212
<PropertyGroup>
13-
<Version>0.1.5</Version>
14-
<AssemblyVersion>0.1.5</AssemblyVersion>
15-
<FileVersion>0.1.5</FileVersion>
16-
<InformationalVersion>0.1.5</InformationalVersion>
13+
<Version>0.1.6</Version>
14+
<AssemblyVersion>0.1.6</AssemblyVersion>
15+
<FileVersion>0.1.6</FileVersion>
16+
<InformationalVersion>0.1.6</InformationalVersion>
1717
</PropertyGroup>
1818
</Project>

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ dotnet add package Atypical.VirtualFileSystem
102102
or by adding a package reference to your project file:
103103

104104
```xml
105-
<PackageReference Include="Atypical.VirtualFileSystem" Version="0.1.5" />
105+
<PackageReference Include="Atypical.VirtualFileSystem" Version="0.1.6" />
106106
```
107107

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

153153
// get the string representation of the virtual file system
154-
string tree = vfs.ToString();
154+
string tree = vfs.GetTree();
155155
```
156156

157157
## 🤝 Contributing

src/Atypical.VirtualFileSystem.Core/Atypical.VirtualFileSystem.Core.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444
<RepositoryBranch>main</RepositoryBranch>
4545
<PackageReleaseNotes>
4646
## Changes
47-
- Bump Microsoft.NET.Test.Sdk from 17.4.1 to 17.5.0 @dependabot (#31)
48-
- Bump FluentAssertions from 6.9.0 to 6.10.0 @dependabot (#30)
49-
- Fix readme file on NuGet.org @phmatray (#29)
50-
- Move commands and queries in separate files
47+
- Get a summary from the ToString method @phmatray (#35)
48+
- Add some unit tests @phmatray (#34)
49+
- Add method to IVirtualFileSystem + comments and test @phmatray (#33)
50+
- Create Directory.Build.props @phmatray (#32)
5151
</PackageReleaseNotes>
5252
</PropertyGroup>
5353

0 commit comments

Comments
 (0)