Skip to content

Commit

Permalink
Update README for v2.1.1
Browse files Browse the repository at this point in the history
Update README with 2.1.1 release notes
Add exclusions in CI pipeline to avoid useless builds when supporting files change instead of code.
  • Loading branch information
madd0 committed Feb 4, 2020
1 parent 315b137 commit 24290f2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .azure/pipelines/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ trigger:
include:
- master
- develop
paths:
exclude:
- .azure/*
- LICENSE.md
- README.md

# Run PR validation on all branches
pr:
Expand Down
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,14 @@ Issues and feature requests can be made in the projects

## Versions ##

### v2.1.1 - 2020-02-04 ###

* Workaround for problem described in [#20][10]
* The .NET Core 3.1 driver was getting .NET Core 3.0 references, which prevented it from compiling the generated code because
the driver itself was a reference and therefore needed 3.1 references.
* As a workaround, the driver is no longer a required reference for the generated code, which is compatible with either
.NET Core 3.0 or 3.1, so no matter what runtime LinqPad provides, the code should compile.

### v2.1.0 - 2020-01-05 ###

Happy new year! After last month's update, I decided to work on some really
Expand Down Expand Up @@ -77,3 +85,4 @@ This is the first public release. Needs real-world testing.
[7]: https://github.com/madd0/AzureStorageDriver/issues/19
[8]: https://github.com/madd0/AzureStorageDriver/pull/8
[9]: https://github.com/madd0/AzureStorageDriver/pull/12
[10]: https://github.com/madd0/AzureStorageDriver/issues/20

0 comments on commit 24290f2

Please sign in to comment.