Skip to content

Commit

Permalink
Bump LDC version / frontend version / Phobos submodule
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed Mar 3, 2024
1 parent 5b2dcf3 commit 51072e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ include(GetLinuxDistribution)
#

# Version information
set(LDC_VERSION "1.37.0") # May be overridden by git hash tag
set(LDC_VERSION "1.38.0") # May be overridden by git hash tag
set(DMDFE_MAJOR_VERSION 2)
set(DMDFE_MINOR_VERSION 107)
set(DMDFE_PATCH_VERSION 1)
set(DMDFE_MINOR_VERSION 108)
set(DMDFE_PATCH_VERSION 0)

set(DMD_VERSION ${DMDFE_MAJOR_VERSION}.${DMDFE_MINOR_VERSION}.${DMDFE_PATCH_VERSION})

Expand Down
2 changes: 1 addition & 1 deletion runtime/phobos
Submodule phobos updated 74 files
+1 −0 .dscanner.ini
+50 −6 .github/workflows/main.yml
+4 −1 .gitignore
+1 −1 CONTRIBUTING.md
+58 −46 Makefile
+0 −76 azure-pipelines.yml
+24 −0 changelog/range_predicate_element.dd
+20 −0 changelog/upgrade-unicode.dd
+12 −47 dub.sdl
+25 −24 etc/c/zlib.d
+47 −7 etc/c/zlib/ChangeLog
+22 −0 etc/c/zlib/LICENSE
+9 −10 etc/c/zlib/README
+5 −27 etc/c/zlib/adler32.c
+5 −16 etc/c/zlib/compress.c
+94 −161 etc/c/zlib/crc32.c
+362 −434 etc/c/zlib/deflate.c
+43 −12 etc/c/zlib/deflate.h
+1 −1 etc/c/zlib/doc/algorithm.txt
+1 −3 etc/c/zlib/gzclose.c
+13 −29 etc/c/zlib/gzguts.h
+28 −85 etc/c/zlib/gzlib.c
+23 −73 etc/c/zlib/gzread.c
+24 −65 etc/c/zlib/gzwrite.c
+17 −30 etc/c/zlib/infback.c
+1 −4 etc/c/zlib/inffast.c
+1 −1 etc/c/zlib/inffast.h
+33 −100 etc/c/zlib/inflate.c
+6 −11 etc/c/zlib/inftrees.c
+6 −6 etc/c/zlib/inftrees.h
+26 −81 etc/c/zlib/test/example.c
+3 −2 etc/c/zlib/test/infcover.c
+52 −124 etc/c/zlib/test/minigzip.c
+290 −355 etc/c/zlib/trees.c
+4 −12 etc/c/zlib/uncompr.c
+23 −14 etc/c/zlib/zconf.h
+3 −3 etc/c/zlib/zlib.3
+202 −199 etc/c/zlib/zlib.h
+18 −44 etc/c/zlib/zutil.c
+13 −33 etc/c/zlib/zutil.h
+3 −0 lib/package.d
+58 −0 lib/sys/compiler.d
+149 −0 lib/sys/meta.d
+4 −0 lib/sys/package.d
+158 −0 lib/sys/system.d
+2 −2 std/algorithm/iteration.d
+31 −7 std/algorithm/mutation.d
+4 −6 std/bitmanip.d
+1 −1 std/complex.d
+4 −4 std/conv.d
+5 −1 std/exception.d
+10 −4 std/format/internal/floats.d
+2 −5 std/format/internal/write.d
+1,806 −14 std/internal/unicode_comp.d
+3,216 −14 std/internal/unicode_decomp.d
+528 −14 std/internal/unicode_grapheme.d
+450 −8 std/internal/unicode_norm.d
+7,398 −2,203 std/internal/unicode_tables.d
+1 −1 std/math/algebraic.d
+19 −25 std/math/exponential.d
+0 −8 std/math/hardware.d
+10 −11 std/math/operations.d
+0 −166 std/math/package.d
+2 −2 std/math/rounding.d
+172 −7 std/math/traits.d
+2 −3 std/math/trigonometry.d
+52 −16 std/mmfile.d
+117 −1 std/range/package.d
+94 −5 std/range/primitives.d
+1 −1 std/regex/internal/backtracking.d
+2 −2 std/regex/internal/ir.d
+72 −19 std/typecons.d
+20 −19 std/uni/package.d
+291 −139 tools/unicode_table_generator.d

0 comments on commit 51072e9

Please sign in to comment.