Skip to content

Commit 399bccd

Browse files
committed
6.2.0
1 parent 9bdce17 commit 399bccd

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

debian/changelog

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
cjs (6.2.0) wilma; urgency=medium
2+
3+
[ Clement Lefebvre ]
4+
* packaging: Forbid compilation if the symbols file is outdated
5+
6+
[ Leigh Scott ]
7+
* Port to mozjs115 (#122)
8+
9+
[ Fabio Fantoni ]
10+
* debian: wrap and sort
11+
12+
[ Simon McVittie ]
13+
* d/control: libcjs0 Depends on gir1.2-girepository-2.0
14+
* d/control: libcjs0 Depends on typelibs imported by built-in modules
15+
16+
-- Clement Lefebvre <[email protected]> Tue, 11 Jun 2024 15:25:49 +0100
17+
118
cjs (6.0.0) virginia; urgency=medium
219

320
[ Dominik Opyd ]

meson.build

+9-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
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.1.0', license: ['MIT', 'LGPL2+'],
6-
meson_version: '>=0.56.0',
7-
default_options: ['cpp_std=c++17', 'cpp_rtti=false', 'c_std=c99',
8-
'warning_level=2', 'b_pch=true' ])
5+
project(
6+
'cjs',
7+
'cpp',
8+
'c',
9+
version : '6.2.0',
10+
license : ['MIT', 'LGPL2+'],
11+
meson_version : '>=0.56.0',
12+
default_options : ['cpp_std=c++17', 'cpp_rtti=false', 'c_std=c99', 'warning_level=2', 'b_pch=true']
13+
)
914

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

0 commit comments

Comments
 (0)