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

Clarifying SVN vs. Version. #1715

Merged
merged 1 commit into from
Mar 31, 2023
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
3 changes: 2 additions & 1 deletion internal/cosesign1/infra.rego
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package infra

svn := "1.0.0"
svn := "1"
framework_version := "0.1.0"

containers := [
{
Expand Down
4 changes: 2 additions & 2 deletions internal/tools/policyenginesimulator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ for more detail.
``` rego
package policy
api_svn := "0.7.0"
api_version := "0.7.0"
import future.keywords.every
import future.keywords.in
Expand Down Expand Up @@ -187,7 +187,7 @@ reason := {"errors": data.framework.errors}
``` rego
package policy
api_svn := "0.7.0"
api_version := "0.7.0"
overlays := {
"pause": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package policy

api_svn := "0.7.0"
api_version := "0.7.0"

overlays := {
"pause": {
Expand Down
Loading