- Added Darwin arm64 and Windows arm64 builds.
- When a file is already sorted,
omegasort
will no longer write to the file. This means that the file's last modification time will not change in this case. Fixes #3.
- Added a
--unique
flag. This can also be used with--check
to check that a file is both sorted and unique. - Always close temp files before moving them. On Windows attempting to move an open file causes an error.
-
Fix handling of errors during initialization. These sorts of error could lead to a confusing panic instead of showing the actual error message.
-
Handle the case where stdout is not connected to the terminal. Previously this caused an error during initialization.
-
Replace file renaming with copying to handle the case where the temp file we sort into and the original file are not on the same partition.
-
Fix bug where sorting wasn't stable in the presence of two case-insensitively identical lines (and possibly other similar scenarios).
- Fix terminal width check. It was using the height as the width. In addition, it now makes the text width 90 characters if the terminal is wider than that.
- The
--check
flag was not implemented and now it is.
- First release upon an unsuspecting world.