Skip to content

Commit

Permalink
Merge pull request #17 from MonacsLib/develop
Browse files Browse the repository at this point in the history
Release version 0.2.1
  • Loading branch information
bartsokol authored Mar 18, 2018
2 parents b613340 + d7118e1 commit f02e262
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: csharp
mono: alpha
dotnet: 2.0.0
mono: latest
dotnet: 2.1.4
dist: trusty
env: FrameworkPathOverride=/usr/lib/mono/4.5/
script:
Expand Down
2 changes: 1 addition & 1 deletion Monacs.Core/Monacs.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard1.3;net461</TargetFrameworks>
<TargetFrameworks>netstandard1.3;netstandard2.0;net461</TargetFrameworks>
<NuspecFile>$(MSBuildThisFileDirectory)$(MSBuildProjectName).nuspec</NuspecFile>
<LangVersion>latest</LangVersion>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
Expand Down
3 changes: 2 additions & 1 deletion Monacs.Core/Monacs.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Monacs.Core</id>
<version>0.2.0</version>
<version>0.2.1</version>
<authors>Bartosz Sokół</authors>
<owners>Bartosz Sokół</owners>
<licenseUrl>https://github.com/bartsokol/Monacs/blob/master/LICENSE</licenseUrl>
Expand All @@ -19,6 +19,7 @@
</metadata>
<files>
<file src="bin\Release\netstandard1.3\*.*" target="lib\netstandard1.3\" />
<file src="bin\Release\netstandard2.0\*.*" target="lib\netstandard2.0\" />
<file src="bin\Release\net461\*.*" target="lib\net461\" />
</files>
</package>
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ Some people may prefer Haskell type names (e.g. Maybe instead of Option) or LINQ

## Target platform and language versions

Currently the library is build against .NET 4.6.1 and .NET Standard 1.3. To use the library you need to have .NET 4.6.1+ or .NET Core 1.0+ project with C# language version 6 or higher.
Currently the library is build against .NET 4.6.1, .NET Standard 1.3 and .NET Standard 2.0. To use the library you need to have .NET 4.6.1+ or .NET Core 1.0+ project with C# language version 6 or higher.

## Documentation

You can find [docs and samples here](https://monacslib.github.io).
You can find [docs and guides here](https://monacslib.github.io). There is also a sample project being developed using this library - [you can find it here](https://github.com/MonacsLib/Monacs.Sample).

## Want more?

Expand Down

0 comments on commit f02e262

Please sign in to comment.