Skip to content

Commit

Permalink
Merged v1.2 pre-release updates
Browse files Browse the repository at this point in the history
  • Loading branch information
bartoszlenar committed Nov 4, 2020
2 parents 6e2cd8e + 225e6de commit 5219a8d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/README.md
Expand Up @@ -461,9 +461,9 @@ Before publishing, each release is tested on the [latest versions](https://help.
* Ubuntu
* Windows Server

using the [LTS versions](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) of the underlying frameworks:
using the current and all the supported [LTS versions](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) of the underlying frameworks:

* .NET Core 5.0 preview
* .NET Core 5.0 RC2
* .NET Core 3.1
* .NET Core 2.1
* .NET Framework 4.8 (Windows only)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
dotnet: ['2.1.x', '3.1.x', '5.0.100-rc.1.20452.10']
dotnet: ['2.1.x', '3.1.x', '5.0.100-rc.2.20479.15']
runs-on: ${{ matrix.os }}
name: Test on ${{ matrix.os }} using dotnet ${{ matrix.dotnet }}
steps:
Expand Down
6 changes: 4 additions & 2 deletions docs/CHANGELOG.md
Expand Up @@ -4,8 +4,10 @@ All notable changes to the [Validot project](https://github.com/bartoszlenar/Val
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- `And` - a fluent API method that [helps to visually separate](DOCUMENTATION.md#And) rules within the specification. [#9](https://github.com/bartoszlenar/Validot/issues/9)
## [1.2.0] - 2020-11-04
### Added
- `And` - a fluent API method that [helps to visually separate the rules](DOCUMENTATION.md#And) within the specification. [#9](https://github.com/bartoszlenar/Validot/issues/9)
- Inline documentation (XML comments)

## [1.1.0] - 2020-09-01
### Added
Expand Down
2 changes: 1 addition & 1 deletion docs/DOCUMENTATION.md
Expand Up @@ -2388,7 +2388,7 @@ Specification<BookModel> bookSpecificationPlain = s => s

_Above, the example of specification where fluent API methods are separated using indentations. Autoformatting (e.g., when pasting this code) could align all methods like this:_

```
``` csharp
Specification<BookModel> bookSpecificationPlain = s => s
.Member(m => m.Title, m => m
.Optional()
Expand Down

0 comments on commit 5219a8d

Please sign in to comment.