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

Update NEWS and change version for 2.53.4 #998

Merged
merged 5 commits into from
Feb 15, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
/src/u-b.o.startup.s
/src/ubase/projectInfo.ml
/src/unison
/src/unison-gui
/src/unison-fsmonitor
TAGS
build
Expand Down
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ unison uses git history for that, and thus there is no changelog file.

## Changes in 2.53.4

Released 2023-xx-yy
Released 2024-02-17

* Improved and simplified makefiles. Please review your build scripts
for changed build goals, input variables and build artifact names.
See INSTALL.md for details.
* opam build uses the makefile build system.
* Various fixes in Windows and Cygwin builds.
* Preferences "force", "prefer" and related "partial" preferences now
work slightly differently with values "newer" and "older". Previously,
Expand Down
3 changes: 0 additions & 3 deletions src/.depend
Original file line number Diff line number Diff line change
Expand Up @@ -1051,7 +1051,6 @@ test.cmo : \
ubase/prefs.cmi \
path.cmi \
os.cmi \
lwt/lwt_util.cmi \
lwt/lwt_unix.cmi \
lwt/lwt.cmi \
globals.cmi \
Expand All @@ -1074,13 +1073,11 @@ test.cmx : \
ubase/prefs.cmx \
path.cmx \
os.cmx \
lwt/lwt_util.cmx \
lwt/lwt_unix.cmx \
lwt/lwt.cmx \
globals.cmx \
fspath.cmx \
fs.cmx \
fingerprint.cmx \
common.cmx \
test.cmi
test.cmi :
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.ProjectInfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
MAJORVERSION=2.53

VERSION=2.53.3
VERSION=2.53.4

NAME=unison
4 changes: 2 additions & 2 deletions src/strings.ml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
let docs =
("about", ("About Unison",
"Unison File Synchronizer\n\
Version 2.53.3\n\
Version 2.53.4\n\
\n\
"))
::
Expand Down Expand Up @@ -2649,7 +2649,7 @@ let docs =
\032 * Each pattern can have one of three forms. The most general form is\n\
\032 a POSIX Extended Regular Expression introduced by the keyword\n\
\032 Regex. (The collating symbol, equivalence class expression, and\n\
\032 character class expresssion described in Section 9.3.5 of the POSIX\n\
\032 character class expression described in Section 9.3.5 of the POSIX\n\
\032 specification\n\
\032 (https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap0\n\
\032 9.html#tag_09_03_05) are not currently supported).\n\
Expand Down
Loading