From 399bccdabc0a5ca00b2350f31abddce63b112d8a Mon Sep 17 00:00:00 2001 From: Clement Lefebvre Date: Tue, 11 Jun 2024 15:27:18 +0100 Subject: [PATCH] 6.2.0 --- debian/changelog | 17 +++++++++++++++++ meson.build | 13 +++++++++---- 2 files changed, 26 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index b446be90..c3b5abac 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Tue, 11 Jun 2024 15:25:49 +0100 + cjs (6.0.0) virginia; urgency=medium [ Dominik Opyd ] diff --git a/meson.build b/meson.build index 18e0b1cc..31e9998c 100644 --- a/meson.build +++ b/meson.build @@ -2,10 +2,15 @@ # SPDX-FileCopyrightText: 2019 Philip Chimento # SPDX-FileCopyrightText: 2019 Chun-wei Fan -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