File tree Expand file tree Collapse file tree 4 files changed +16
-9
lines changed Expand file tree Collapse file tree 4 files changed +16
-9
lines changed Original file line number Diff line number Diff line change
1
+ # Change Log
2
+
3
+ ## [ 0.1.0] - 2021-02-09
4
+
5
+ * Initial release
Original file line number Diff line number Diff line change @@ -28,11 +28,8 @@ _Why do you need `linear-base` to write linear projects?_
28
28
29
29
## Getting started
30
30
31
- ` -XLinearTypes ` is not yet part of any GHC release. We recommend using
32
- Stack and Nix together to pull in an experimental version of GHC into
33
- your project. Use [ this ` stack.yaml ` ] ( ./stack.yaml ) as a starting
34
- point for your project. To learn more about Stack+Nix integration, see
35
- [ here] ( https://docs.haskellstack.org/en/stable/nix_integration/ ) .
31
+ ` -XLinearTypes ` is released with GHC 9, and ` linear-base ` is released
32
+ on [ Hackage] ( https://hackage.haskell.org/package/linear-base ) .
36
33
37
34
All source files with linear types need a language extension pragma at
38
35
the top:
@@ -44,7 +41,7 @@ the top:
44
41
## User Guide
45
42
46
43
If you already know what ` -XLinearTypes ` does and what the linear
47
- arrow ` a # -> b ` means, then read the [ User Guide] and explore the
44
+ arrow ` a %1 -> b ` means, then read the [ User Guide] and explore the
48
45
[ ` examples/ ` ] ( ./examples ) folder to know how to use ` linear-base ` .
49
46
50
47
## Learning about ` -XLinearTypes `
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ This short guide assumes
4
4
familiarity with linear types (see the [ ` README ` ] for resources about linear types
5
5
if you are unfamiliar).
6
6
7
- #### Table of content
7
+ #### Table of contents
8
8
9
9
1 . [ How to navigate the library] ( #navigating-the-library )
10
10
2 . [ Core concepts you need to know] ( #core-concepts )
Original file line number Diff line number Diff line change 1
1
name : linear-base
2
- version : 0.1.0.0
2
+ version : 0.1.0
3
3
cabal-version : >= 1.10
4
4
homepage : https://github.com/tweag/linear-base#README
5
5
license : MIT
@@ -9,10 +9,15 @@ maintainer: arnaud.spiwack@tweag.io
9
9
copyright : (c) Tweag Holding and affiliates
10
10
category : Prelude
11
11
build-type : Simple
12
- extra-source-files : README.md
13
12
synopsis : Standard library for linear types.
14
13
description : Please see README.md.
15
14
15
+ extra-source-files :
16
+ README.md
17
+ CHANGELOG.md
18
+ docs/DESIGN.md
19
+ docs/USER_GUIDE.md
20
+
16
21
library
17
22
hs-source-dirs : src
18
23
exposed-modules :
You can’t perform that action at this time.
0 commit comments