Skip to content

Commit

Permalink
Merge pull request #599 from intersystems/v1-fix-postrelease-sql
Browse files Browse the repository at this point in the history
Fix SQL failures due to typo in Postrelease SQL compute code
  • Loading branch information
isc-tleavitt authored Oct 25, 2024
2 parents 0fa8c76 + fd63524 commit f81cae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cls/IPM/General/SemanticVersion.cls
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Property Patch As %Integer(MINVAL = 0) [ Required ];
Property Prerelease As %IPM.DataType.RegExString(MAXLEN = 100, REGEX = "([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*");

/// This is an alias for Prerelease. It is used for code readability when SemVerPostRelease is enabled.
Property Postrelease As %IPM.DataType.RegExString(MAXLEN = 100, REGEX = "([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*") [ Calculated, SqlComputeCode = { Set {*} = Prerelease }, SqlComputed, Transient ];
Property Postrelease As %IPM.DataType.RegExString(MAXLEN = 100, REGEX = "([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*") [ Calculated, SqlComputeCode = { Set {*} = {Prerelease} }, SqlComputed, Transient ];

Property Build As %IPM.DataType.RegExString(MAXLEN = 100, REGEX = "([0-9A-Za-z-])+(\.([0-9A-Za-z-])+)*");

Expand Down

0 comments on commit f81cae7

Please sign in to comment.