Skip to content

Commit

Permalink
Bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tmds committed Dec 13, 2019
1 parent 3c0a9bc commit 39e9634
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ $ dotnet new console -o netmon
$ cd netmon
```

Now we add references to `Tmds.DBus` and `Tmds.DBus.Tool` in `netmon.csproj`. We also set the `LangVersion` to be able
Now we add references to `Tmds.DBus` in `netmon.csproj`. We also set the `LangVersion` to be able
to use an `async Main` (C# 7.1).

```xml
Expand All @@ -41,7 +41,6 @@ to use an `async Main` (C# 7.1).
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Tmds.DBus" Version="0.5.0" />
<DotNetCliToolReference Include="Tmds.DBus.Tool" Version="0.5.0" />
</ItemGroup>
</Project>
```
Expand All @@ -52,6 +51,12 @@ Let's `restore` to fetch these dependencies:
$ dotnet restore
```

Now we'll install the `Tmds.DBus.Tool`.

```
$ dotnet tool install -g Tmds.DBus.Tool
```

Next, we use the `list` command to find out some information about the NetworkManager service:
```
$ dotnet dbus list services --bus system | grep NetworkManager
Expand Down
2 changes: 1 addition & 1 deletion src/Tmds.DBus.Tool/Tmds.DBus.Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ToolCommandName>dotnet-dbus</ToolCommandName>
<AssemblyName>dotnet-dbus</AssemblyName>
<PackageId>Tmds.DBus.Tool</PackageId>
<VersionPrefix>0.7.1</VersionPrefix>
<VersionPrefix>0.8.0</VersionPrefix>
<PackageType>DotnetCliTool</PackageType>
<Authors>Tom Deseyn</Authors>
<RepositoryType>git</RepositoryType>
Expand Down
2 changes: 1 addition & 1 deletion src/Tmds.DBus/Tmds.DBus.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>Tmds.DBus Library</Description>
<VersionPrefix>0.7.1</VersionPrefix>
<VersionPrefix>0.8.0</VersionPrefix>
<Authors>Tom Deseyn</Authors>
<TargetFrameworks>netstandard1.5;netstandard2.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand Down

0 comments on commit 39e9634

Please sign in to comment.