Skip to content

Commit

Permalink
Publish 1.0.0-preview-001
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Feb 5, 2019
1 parent 098e36e commit 1e6d8e7
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 4 deletions.
20 changes: 20 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
The MIT License (MIT)

Copyright (c) 2018-9 Eirik Tsarpalis

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# FSharp.UMX
# FSharp.UMX [![release](https://img.shields.io/github/release/fsprojects/FSharp.UMX.svg)](https://github.com/fsprojects/FSharp.UMX/releases) [![NuGet](https://img.shields.io/nuget/vpre/FSharp.UMX.svg)](https://www.nuget.org/packages/fsprojects/FSharp.UMX/) ![code size](https://img.shields.io/github/languages/code-size/fsprojects/FSharp.UMX.svg) [![license](https://img.shields.io/github/license/fsprojects/FSharp.UMX.svg)](LICENSE)

F# Units of Measure for non-numeric types by Eirik Tsarpalis. Compatible with Fable.
F# Units of Measure for primitive non-numeric types by Eirik Tsarpalis. Compatible with Fable.

## Installing

Expand Down
6 changes: 6 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
### 1.0.0-preview-001

* Rename to FSharp.UMX @alfonsogarciacaro
* Support downlevel FSharp.Core on net45 @bartelink
* Add tests, simplify build scripts @eiriktsarpalis

### 1.0.0-beta-005

* Multi-target, lower FSharp.Core version @eiriktsarpalis
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 11 additions & 1 deletion src/FSharp.UMX.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,19 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Authors>@alfonsogarciacaro @eiriktsarpalis</Authors>
<Description>F# Units of Measure for primitive non-numeric types. Compatible with Fable.</Description>
<PackageLicense>MIT</PackageLicense>
<PackageProjectUrl>https://github.com/fsprojects/FSharp.UMX</PackageProjectUrl>
<PackageTags>fsharp unitofmeasure fable</PackageTags>

<Version>1.0.0</Version>
<PackageVersion>1.0.0-beta-005</PackageVersion>
<PackageVersion>1.0.0-preview-001</PackageVersion>

<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
<WarningLevel>5</WarningLevel>

<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
</PropertyGroup>
Expand All @@ -20,6 +28,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />

<PackageReference Include="FSharp.Core" Version="3.1.2.5" Condition=" '$(TargetFramework)' == 'net45' " />
<PackageReference Include="FSharp.Core" Version="4.3.4" Condition=" '$(TargetFramework)' == 'netstandard2.0' " />
</ItemGroup>
Expand Down

0 comments on commit 1e6d8e7

Please sign in to comment.