Skip to content

Commit 1e6d8e7

Browse files
committed
Publish 1.0.0-preview-001
1 parent 098e36e commit 1e6d8e7

5 files changed

Lines changed: 40 additions & 4 deletions

File tree

LICENSE

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2018-9 Eirik Tsarpalis
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# FSharp.UMX
1+
# 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)
22

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

55
## Installing
66

RELEASE_NOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 1.0.0-preview-001
2+
3+
* Rename to FSharp.UMX @alfonsogarciacaro
4+
* Support downlevel FSharp.Core on net45 @bartelink
5+
* Add tests, simplify build scripts @eiriktsarpalis
6+
17
### 1.0.0-beta-005
28

39
* Multi-target, lower FSharp.Core version @eiriktsarpalis

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/FSharp.UMX.fsproj

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,19 @@
22
<Project Sdk="Microsoft.NET.Sdk">
33

44
<PropertyGroup>
5+
<Authors>@alfonsogarciacaro @eiriktsarpalis</Authors>
6+
<Description>F# Units of Measure for primitive non-numeric types. Compatible with Fable.</Description>
7+
<PackageLicense>MIT</PackageLicense>
8+
<PackageProjectUrl>https://github.com/fsprojects/FSharp.UMX</PackageProjectUrl>
9+
<PackageTags>fsharp unitofmeasure fable</PackageTags>
10+
511
<Version>1.0.0</Version>
6-
<PackageVersion>1.0.0-beta-005</PackageVersion>
12+
<PackageVersion>1.0.0-preview-001</PackageVersion>
13+
714
<TargetFrameworks>net45;netstandard2.0</TargetFrameworks>
815
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
916
<WarningLevel>5</WarningLevel>
17+
1018
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference>
1119
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
1220
</PropertyGroup>
@@ -20,6 +28,8 @@
2028
</ItemGroup>
2129

2230
<ItemGroup>
31+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />
32+
2333
<PackageReference Include="FSharp.Core" Version="3.1.2.5" Condition=" '$(TargetFramework)' == 'net45' " />
2434
<PackageReference Include="FSharp.Core" Version="4.3.4" Condition=" '$(TargetFramework)' == 'netstandard2.0' " />
2535
</ItemGroup>

0 commit comments

Comments
 (0)