Skip to content

Commit b9a0d42

Browse files
committed
128.0
1 parent 74bb8d9 commit b9a0d42

File tree

2 files changed

+29
-4
lines changed

2 files changed

+29
-4
lines changed

debian/changelog

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
cjs (128.0) xia; urgency=medium
2+
3+
[ Michael Webster ]
4+
* Rebase off gjs 1.82.1 (mozjs128)
5+
6+
[ Fabio Fantoni ]
7+
* [mozjs-128] fix packaging (#128)
8+
9+
[ Clement Lefebvre ]
10+
* Remove version restrictions
11+
12+
-- Clement Lefebvre <[email protected]> Fri, 28 Mar 2025 17:41:47 +0000
13+
114
cjs (6.5.0) xia; urgency=medium
215

316
* Rebase on gjs-1.82.1 (from debian 13/trixie)

meson.build

+16-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,22 @@
22
# SPDX-FileCopyrightText: 2019 Philip Chimento <[email protected]>
33
# SPDX-FileCopyrightText: 2019 Chun-wei Fan <[email protected]>
44

5-
project('cjs', 'cpp', 'c', version: '6.5.0', license: ['MIT', 'LGPL2+'],
6-
meson_version: '>= 0.62.0',
7-
default_options: ['cpp_std=c++17', 'cpp_rtti=false', 'cpp_eh=none',
8-
'c_std=c99', 'warning_level=2', 'b_pch=true' ])
5+
project(
6+
'cjs',
7+
'cpp',
8+
'c',
9+
version : '128.0',
10+
license : ['MIT', 'LGPL2+'],
11+
meson_version : '>= 0.62.0',
12+
default_options : [
13+
'cpp_std=c++17',
14+
'cpp_rtti=false',
15+
'cpp_eh=none',
16+
'c_std=c99',
17+
'warning_level=2',
18+
'b_pch=true'
19+
]
20+
)
921

1022
# cpp_rtti: SpiderMonkey can be compiled with or without runtime type
1123
# information, and the default is without. We must match that option because we

0 commit comments

Comments
 (0)