Skip to content

Commit

Permalink
fix merlin dep, upgrade version
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Nogueira committed Jul 11, 2024
1 parent e4999e6 commit 5740393
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
## 0.1.1 (2024-07-11)
- Fix merlin dep and template parser

## 0.1.0 (2024-07-07)
- Open source passage
8 changes: 6 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

(license "MIT")

(version "0.1.0")
(version "0.1.1")

(source
(github ahrefs/passage))
Expand All @@ -24,13 +24,17 @@
(depends
(cmdliner
(>= 1.1.0))
(ocaml
(>= 4.14))
dune
devkit
extunix
fileutils
fpath
lwt
lwt_ppx
menhir
(menhir
(>= 20231231))
ppx_expect
(ocamlformat
(and
Expand Down
2 changes: 1 addition & 1 deletion lib/template_parser.mly
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
%token <string> TEXT
%token EOF

%start <ast> template
%start <Template_ast.ast> template

%%
template:
Expand Down
7 changes: 4 additions & 3 deletions passage.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "0.1.0"
version: "0.1.1"
synopsis: "Passage - used to store and manage access to shared secrets"
description: "Passage - used to store and manage access to shared secrets"
maintainer: ["Ahrefs Pte Ltd <[email protected]>"]
Expand All @@ -9,15 +9,16 @@ license: "MIT"
homepage: "https://github.com/ahrefs/passage"
bug-reports: "https://github.com/ahrefs/passage/issues"
depends: [
"dune" {>= "3.9"}
"cmdliner" {>= "1.1.0"}
"ocaml" {>= "4.14"}
"dune" {>= "3.9"}
"devkit"
"extunix"
"fileutils"
"fpath"
"lwt"
"lwt_ppx"
"menhir"
"menhir" {>= "20231231"}
"ppx_expect"
"ocamlformat" {with-dev-setup & = "0.26.2"}
"qrc"
Expand Down

0 comments on commit 5740393

Please sign in to comment.