Skip to content

Commit 0f6fae2

Browse files
authored
Merge pull request #629 from polyadic/release-2.7.1
Bump version
2 parents 92bbf06 + eb626e6 commit 0f6fae2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Generate NuGet Packages
4545
run: dotnet pack --configuration Release --output nupkg
4646
- uses: actions/upload-artifact@v2
47-
if: success() && github.ref == 'refs/heads/main'
47+
if: success() && github.ref == 'refs/heads/release/2.7.x'
4848
with:
4949
name: nupkg
5050
path: nupkg/*

Funcky/Funcky.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Product>Funcky</Product>
77
<Description>Funcky is a functional C# library</Description>
88
<PackageTags>Functional Monad Linq</PackageTags>
9-
<Version>2.7.0</Version>
9+
<Version>2.7.1</Version>
1010
<IncludeSymbols>true</IncludeSymbols>
1111
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1212
<PackageReadmeFile>README.md</PackageReadmeFile>

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All notable changes to this project will be documented in this file.
33
Funcky adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5-
## Next Patch
5+
## Funcky 2.7.1
66
### Deprecations
77
* `Option.None<T>()`: We originally introduced the `Option.None<T>` method as a future proof replacement to `Option<T>.None` for use in method groups,
88
because Funcky 3 changes `Option<T>.None` to a property. This turned out to be confusing to users especially because both method are always suggested in autocomplete.

0 commit comments

Comments
 (0)