Skip to content

Commit

Permalink
release 0.3.0 (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
gborough authored Jan 28, 2024
1 parent b250fcf commit b3f6d26
Show file tree
Hide file tree
Showing 7 changed files with 536 additions and 297 deletions.
2 changes: 2 additions & 0 deletions .ocamlformat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
profile = janestreet
version = 0.26.1
13 changes: 12 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,15 @@
## 0.2.1 (2024-01-24)

### Removed
* Removed core and re2 dependencies
* Removed core and re2 dependencies

## 0.2.1 (2024-01-29)

### Added
* Added ocamlformat rules

### Removed
* Removed unnecessary ord derive on all types

### Fixed
* Fixed PropertyBag signature from (string * string) list -> (string * abstract) list to cover JSON value cases
29 changes: 18 additions & 11 deletions lib/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,32 @@
(public_name sarif)
(name sarif)
(libraries timedesc atdgen-runtime re uri)
(preprocess (pps ppx_deriving.show ppx_deriving.ord ppx_deriving.eq))
(flags :standard -w -30))
(preprocess
(pps ppx_deriving.show ppx_deriving.ord ppx_deriving.eq))
(flags :standard -w -30))

(include_subdirs unqualified)

(rule
(targets sarif_v_2_1_0_t.ml sarif_v_2_1_0_t.mli)
(deps sarif_v_2_1_0.atd)
(mode (promote (until-clean)))
(action (run atdgen -t %{deps})))
(deps sarif_v_2_1_0.atd)
(mode
(promote (until-clean)))
(action
(run atdgen -t %{deps})))

(rule
(targets sarif_v_2_1_0_j.ml sarif_v_2_1_0_j.mli)
(deps sarif_v_2_1_0.atd)
(mode (promote (until-clean)))
(action (run atdgen -j -j-std %{deps})))
(deps sarif_v_2_1_0.atd)
(mode
(promote (until-clean)))
(action
(run atdgen -j -j-std %{deps})))

(rule
(targets sarif_v_2_1_0_v.ml sarif_v_2_1_0_v.mli)
(deps sarif_v_2_1_0.atd)
(mode (promote (until-clean)))
(action (run atdgen -v %{deps})))
(deps sarif_v_2_1_0.atd)
(mode
(promote (until-clean)))
(action
(run atdgen -v %{deps})))
Loading

0 comments on commit b3f6d26

Please sign in to comment.