Skip to content

Commit 28951af

Browse files
authored
prepare release (v2.0) (ocaml-community#72)
* add description in opam file * link to API documentation from README (addresses ocaml-community#67) * update version number to 2.0
1 parent 5d5dc43 commit 28951af

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGES

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2.0
2+
* GPR#70: Switch to dune, opam v2
3+
* GPR#60: Breaking change: switch from int codepoints to Uchar.t
4+
codepoints
5+
* GPR#59: Track lexing position
6+
7+
-------------------------------------------------------------------------------
8+
19
1.99.4
210
* GPR#47: Switch to ocaml-migrate-parsetree (contributed by Adrien Guatto)
311
* GPR#42: Added 'Rep' (repeat operator) (contributed by jpathy)
@@ -16,7 +24,7 @@
1624
* First version of sedlex. The history below refers to ulex, the ancestor
1725
or sedlex implemented with Camlp4.
1826

19-
--------------------------------------------------------------------------
27+
-------------------------------------------------------------------------------
2028

2129
1.1
2230
* Generate (more) globally unique identifiers to avoid conflicts when open'ing another module

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ sedlex was originally written by Alain Frisch
1010
<[email protected]> and is now maintained as part of the
1111
ocaml-community repositories on github.
1212

13+
## API
14+
The API is documented [here](https://ocaml-community.github.io/sedlex).
15+
1316
## Overview
1417

1518
sedlex is a lexer generator for OCaml, similar to ocamllex, but

sedlex.opam

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
opam-version: "2.0"
22
name: "sedlex"
33
synopsis: "An OCaml lexer generator for Unicode"
4-
version: "1.99.5"
4+
description: "
5+
sedlex is a lexer generator for OCaml. It is similar to ocamllex, but supports
6+
Unicode. Unlike ocamllex, sedlex allows lexer specifications within regular
7+
OCaml source files. Lexing specific constructs are provided via a ppx syntax
8+
extension.
9+
"
10+
version: "2.0"
511
license: "MIT"
12+
doc: "https://ocaml-community.github.io/sedlex/index.html"
613
maintainer: "Alain Frisch <[email protected]>"
714
authors: [
815
"Alain Frisch <[email protected]>"

0 commit comments

Comments
 (0)