Skip to content

Commit

Permalink
6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
clefebvre committed Jun 11, 2024
1 parent 9bdce17 commit 399bccd
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 4 deletions.
17 changes: 17 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
cjs (6.2.0) wilma; urgency=medium

[ Clement Lefebvre ]
* packaging: Forbid compilation if the symbols file is outdated

[ Leigh Scott ]
* Port to mozjs115 (#122)

[ Fabio Fantoni ]
* debian: wrap and sort

[ Simon McVittie ]
* d/control: libcjs0 Depends on gir1.2-girepository-2.0
* d/control: libcjs0 Depends on typelibs imported by built-in modules

-- Clement Lefebvre <[email protected]> Tue, 11 Jun 2024 15:25:49 +0100

cjs (6.0.0) virginia; urgency=medium

[ Dominik Opyd ]
Expand Down
13 changes: 9 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,15 @@
# SPDX-FileCopyrightText: 2019 Philip Chimento <[email protected]>
# SPDX-FileCopyrightText: 2019 Chun-wei Fan <[email protected]>

project('cjs', 'cpp', 'c', version: '6.1.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' ])
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']
)

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

0 comments on commit 399bccd

Please sign in to comment.