diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee33bf..84180ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.1] - 2022-12-06 + +### Fixed +- Fixed another `` error parsing triggers + ## [1.1.0] - 2022-12-06 ### Added diff --git a/cls/pkg/isc/codetidy/CodeTidy.cls b/cls/pkg/isc/codetidy/CodeTidy.cls index 6c9691b..0dbd0a3 100644 --- a/cls/pkg/isc/codetidy/CodeTidy.cls +++ b/cls/pkg/isc/codetidy/CodeTidy.cls @@ -38,6 +38,7 @@ ClassMethod Class(pClassName As %String, pSaveChanges = 0) As %Status set oClass = ##class(%Dictionary.ClassDefinition).%OpenId(pClassName, , .tSc) if $$$ISERR(tSc) quit tSc + set sqlSchemaName = $$DetermineSchemaName^%occClass(pClassName) for j = 1:1:oClass.Methods.Count() { set oMth = oClass.Methods.GetAt(j) diff --git a/module.xml b/module.xml index 25f61bc..88b2e34 100644 --- a/module.xml +++ b/module.xml @@ -2,7 +2,7 @@ isc.codetidy - 1.1.0 + 1.1.1 module