v0.2.5
- Fixed PyPI badge (#72). In this release, we have implemented a fix to the PyPI badge in the README file of our open-source library. The PyPI badge displays the version of the package and serves as a quick reference for users. This fix ensures the accuracy and proper functioning of the badge, without involving any changes to the functionality or methods within the project. Software engineers can be assured that this update is limited to the README file, specifically the PyPI badge, and will not affect the overall functionality of the library.
- Fixed
no-cheatcheck (#71). In this release, we have made improvements to theno-cheatverification process for new code. Previously, the check for disabling the linter was prone to false positives when the string '# pylint: disable' appeared for reasons other than disabling the linter. The updated code now includes an additional filter to exclude the stringCHEATfrom the search, and the number of characters in the output is counted using thewc -ccommand. If the count is not zero, the script will terminate with an error message. This change enhances the accuracy of theno-cheatcheck, ensuring that the linter is being used correctly and that all new code meets our quality standards. - Removed upper bound on
sqlglotdependency (#70). In this update, we have removed the upper bound on thesqlglotdependency version in the project'spyproject.tomlfile. Previously, the version constraint requiredsqlglotto be at least 22.3.1 but less than 22.5.0. With this modification, there will be no upper limit, enabling the project to utilize any version greater than or equal to 22.3.1. This change provides the project with the flexibility to take advantage of future bug fixes, performance improvements, and new features available in newersqlglotpackage versions. Developers should thoroughly test the updated package version to ensure compatibility with the existing codebase.
Contributors: @nfx