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

daml-lf: freeze version 1.7 #3340

Merged
merged 2 commits into from
Nov 7, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 2 deletions compiler/daml-lf-ast/src/DA/Daml/LF/Ast/Version.hs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ version1_6 = V1 $ PointStable 6

-- | DAML-LF version 1.7
version1_7 :: Version
version1_7 = versionDev -- Update once 1.7 is out.
version1_7 = V1 $ PointStable 7

-- | The DAML-LF version used by default.
versionDefault :: Version
Expand Down Expand Up @@ -70,7 +70,7 @@ featureAnyType = Feature
featureTypeRep :: Feature
featureTypeRep = Feature
{ featureName = "TypeRep type"
, featureMinVersion = versionDev
, featureMinVersion = version1_7
, featureCppFlag = "DAML_TYPE_REP"
}

Expand Down
1 change: 1 addition & 0 deletions compiler/damlc/pkg-db/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ load(

DAML_LF_VERSIONS = [
"1.6",
"1.7",
"1.dev",
]

Expand Down
Loading