Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.3.0. Refs #133. #134

Merged
merged 18 commits into from
Mar 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
c70e5bb
ogma-extra: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
a9a845b
ogma-spec: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
11f1abe
ogma-language-smv: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
95a6319
ogma-language-jsonspec: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
a22bab7
ogma-language-copilot: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
0e82ff1
ogma-language-cocospec: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
3a728dc
ogma-language-c: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
ab1d062
ogma-core: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
6f24c86
ogma-cli: Version bump (1.3.0). Refs #133.
ivanperez-keera Mar 22, 2024
2ea58dd
ogma-extra: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
5acecf0
ogma-spec: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
e04165e
ogma-language-smv: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
2afea31
ogma-language-jsonspec: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
530674a
ogma-language-copilot: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
dd78c89
ogma-language-cocospec: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
5f9f542
ogma-language-c: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
681a39b
ogma-core: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
a91dd35
ogma-cli: Document changes in CHANGELOG. Refs #133.
ivanperez-keera Mar 22, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ogma-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for ogma-cli

## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).

## [1.2.0] - 2024-01-21

* Version bump 1.2.0 (#117).
Expand Down
4 changes: 2 additions & 2 deletions ogma-cli/ogma-cli.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Simple

name: ogma-cli
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down Expand Up @@ -141,7 +141,7 @@ executable ogma
build-depends:
base >= 4.11.0.0 && < 5
, optparse-applicative
, ogma-core >= 1.2.0 && < 1.3
, ogma-core >= 1.3.0 && < 1.4

hs-source-dirs:
src
Expand Down
3 changes: 2 additions & 1 deletion ogma-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Revision history for ogma-core

## [1.X.Y] - 2024-03-14
## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).
* Fix missing stream name substitution (#120).
* Use generalized JSON parser for DB Spec (#122).
* Fix translation of equivalence boolean operator from SMV (#126).
Expand Down
16 changes: 8 additions & 8 deletions ogma-core/ogma-core.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Simple

name: ogma-core
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down Expand Up @@ -109,13 +109,13 @@ library
, IfElse
, mtl

, ogma-extra >= 1.2.0 && < 1.3
, ogma-language-c >= 1.2.0 && < 1.3
, ogma-language-cocospec >= 1.2.0 && < 1.3
, ogma-language-copilot >= 1.2.0 && < 1.3
, ogma-language-jsonspec >= 1.2.0 && < 1.3
, ogma-language-smv >= 1.2.0 && < 1.3
, ogma-spec >= 1.2.0 && < 1.3
, ogma-extra >= 1.3.0 && < 1.4
, ogma-language-c >= 1.3.0 && < 1.4
, ogma-language-cocospec >= 1.3.0 && < 1.4
, ogma-language-copilot >= 1.3.0 && < 1.4
, ogma-language-jsonspec >= 1.3.0 && < 1.4
, ogma-language-smv >= 1.3.0 && < 1.4
, ogma-spec >= 1.3.0 && < 1.4

hs-source-dirs:
src
Expand Down
4 changes: 4 additions & 0 deletions ogma-extra/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for ogma-extra

## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).

## [1.2.0] - 2024-01-21

* Version bump 1.2.0 (#117).
Expand Down
2 changes: 1 addition & 1 deletion ogma-extra/ogma-extra.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Simple

name: ogma-extra
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down
4 changes: 4 additions & 0 deletions ogma-language-c/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for ogma-language-c

## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).

## [1.2.0] - 2024-01-21

* Version bump 1.2.0 (#117).
Expand Down
2 changes: 1 addition & 1 deletion ogma-language-c/ogma-language-c.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Custom

name: ogma-language-c
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down
4 changes: 4 additions & 0 deletions ogma-language-cocospec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for ogma-language-cocospec

## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).

## [1.2.0] - 2024-01-21

* Version bump 1.2.0 (#117).
Expand Down
2 changes: 1 addition & 1 deletion ogma-language-cocospec/ogma-language-cocospec.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Custom

name: ogma-language-cocospec
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down
4 changes: 4 additions & 0 deletions ogma-language-copilot/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for ogma-language-copilot

## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).

## [1.2.0] - 2024-01-21

* Version bump 1.2.0 (#117).
Expand Down
2 changes: 1 addition & 1 deletion ogma-language-copilot/ogma-language-copilot.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Simple

name: ogma-language-copilot
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down
3 changes: 2 additions & 1 deletion ogma-language-jsonspec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Revision history for ogma-language-jsonspec

## [1.X.Y] - 2024-01-24
## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).
* Make some fields in JSON format spec optional (#122).

## [1.2.0] - 2024-01-21
Expand Down
4 changes: 2 additions & 2 deletions ogma-language-jsonspec/ogma-language-jsonspec.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Simple

name: ogma-language-jsonspec
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down Expand Up @@ -70,7 +70,7 @@ library
, megaparsec
, bytestring

, ogma-spec >= 1.2.0 && < 1.3
, ogma-spec >= 1.3.0 && < 1.4

hs-source-dirs:
src
Expand Down
4 changes: 4 additions & 0 deletions ogma-language-smv/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for ogma-language-smv

## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).

## [1.2.0] - 2024-01-21

* Version bump 1.2.0 (#117).
Expand Down
2 changes: 1 addition & 1 deletion ogma-language-smv/ogma-language-smv.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Custom

name: ogma-language-smv
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down
4 changes: 4 additions & 0 deletions ogma-spec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Revision history for ogma-spec

## [1.3.0] - 2024-03-21

* Version bump 1.3.0 (#133).

## [1.2.0] - 2024-01-21

* Version bump 1.2.0 (#117).
Expand Down
2 changes: 1 addition & 1 deletion ogma-spec/ogma-spec.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ cabal-version: 2.0
build-type: Simple

name: ogma-spec
version: 1.2.0
version: 1.3.0
homepage: http://nasa.gov
license: OtherLicense
license-file: LICENSE.pdf
Expand Down