-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
cjs (6.4.0) xia; urgency=medium | ||
|
||
[ Leigh Scott ] | ||
* Fix meson.build deprecations up to 0.56.0 (#119) (#125) | ||
|
||
[ Rick Calixte ] | ||
* gjs-util: Backport private closure annotations patch (#126) | ||
|
||
-- Clement Lefebvre <[email protected]> Mon, 25 Nov 2024 12:17:11 +0000 | ||
|
||
cjs (6.2.0) wilma; urgency=medium | ||
|
||
[ Clement Lefebvre ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ | |
# SPDX-FileCopyrightText: 2019 Chun-wei Fan <[email protected]> | ||
|
||
project( | ||
'cjs', | ||
'cpp', | ||
'c', | ||
version : '6.2.0', | ||
license : ['MIT', 'LGPL2+'], | ||
meson_version : '>=0.56.0', | ||
default_options : ['cpp_std=c++17', 'cpp_rtti=false', 'c_std=c99', 'warning_level=2', 'b_pch=true'] | ||
'cjs', | ||
'cpp', | ||
'c', | ||
version : '6.4.0', | ||
license : ['MIT', 'LGPL2+'], | ||
meson_version : '>=0.56.0', | ||
default_options : ['cpp_std=c++17', 'cpp_rtti=false', 'c_std=c99', 'warning_level=2', 'b_pch=true'] | ||
) | ||
|
||
# cpp_rtti: SpiderMonkey can be compiled with or without runtime type | ||
|