Skip to content

Commit

Permalink
3.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dmbaturin committed Apr 10, 2024
1 parent f776309 commit d757edb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 Daniil Baturin
Copyright (c) 2024 Daniil Baturin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions bnfgen.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "bnfgen"
version: "3.0.0"
version: "3.1.0"
synopsis: "Random text generator that takes context-free grammars from BNF files"
description: """
BNFGen generates random texts based on user-defined context-free grammars
Expand Down Expand Up @@ -28,6 +28,6 @@ build: [
]
depends: [
"ocaml" {>= "4.08"}
"menhir"
"menhir" {>= "20211128"}
"dune" {>= "1.9.0"}
]
4 changes: 2 additions & 2 deletions src/bnfgen_cli.ml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
type cmd_action = Dump | Reduce

let print_version () =
print_endline "bnfgen 3.0.0";
print_endline "Copyright 2021, Daniil Baturin, MIT license";
print_endline "bnfgen 3.1.0";
print_endline "Copyright 2024, Daniil Baturin et al., MIT license";
print_endline "https://baturin.org/tools/bnfgen"

let () = Random.self_init()
Expand Down

0 comments on commit d757edb

Please sign in to comment.