Skip to content

Commit

Permalink
chore: update docs and scripts for v1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
codito committed Apr 17, 2021
1 parent 62ab069 commit bcf1fda
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

## Unreleased

NA

## v1.0.1 - 2021-04-17

- Fix: `--toc` command argument should be true by default
- Fix: overwrite existing markdown file

## v1.0.0

First release of Noted \o/
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ produce a plain text markdown file.
## Installation

If you've .NET Core 5.0 or above already installed, simply download the
`Noted.Portable.zip` file from the [latest release][release].
`Noted.<version>.Portable.<os>.zip` file from the [latest release][release].

If you do not wish to install .NET Core 5.0, try the platform specific files
from [latest release][release].
If you do not wish to install .NET Core 5.0, try the self contained app from
[latest release][release].

- Windows: `Noted-<version>.win-x64.zip`
- Linux: `Noted-<version>.linux-x64.zip`
- Windows: `Noted.<version>.win-x64.zip`
- Linux: `Noted.<version>.linux-x64.zip`

[release]: https://github.com/codito/noted/releases

Expand All @@ -42,7 +42,7 @@ Arguments:
Options:
-c, --context extract the paragraph containing an annotation [default: False]
-t, --no-toc extract table of contents and align annotations [default: True]
-t, --toc extract table of contents and align annotations [default: True]
-v, --verbose enable verbose logging [default: False]
--version Show version information
-?, -h, --help Show help and usage information
Expand Down
6 changes: 3 additions & 3 deletions scripts/settings.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SourceRoot Condition="$(SourceRoot) == ''">$(MSBuildThisFileDirectory)../../</SourceRoot>
<SourcePrefix>1.0.0</SourcePrefix>
<SourcePrefix>1.0.1</SourcePrefix>
</PropertyGroup>
<PropertyGroup>
<!-- Versioning is defined from the build script. Use a default dev build if it's not defined.
Sets the AssemblyVersion, AssemblyFileVersion and AssemblyInformationalVersion -->
<Version Condition="'$(Version)' == ''">$(SourcePrefix)-dev</Version>
<PackageVersion Condition="'$(PackageVersion)' == ''">$(SourcePrefix)-dev</PackageVersion>
<Version Condition="'$(Version)' == ''">$(SourcePrefix)</Version>
<PackageVersion Condition="'$(PackageVersion)' == ''">$(SourcePrefix)</PackageVersion>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
Expand Down
6 changes: 0 additions & 6 deletions scripts/version.props

This file was deleted.

0 comments on commit bcf1fda

Please sign in to comment.