duktape 2.6.0.0 → 2.7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -1
- data/ext/duktape/duk_config.h +17 -12
- data/ext/duktape/duktape.c +11831 -10240
- data/ext/duktape/duktape.h +14 -8
- data/lib/duktape/version.rb +1 -1
- metadata +2 -2
data/ext/duktape/duktape.h
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
/*
|
2
|
-
* Duktape public API for Duktape 2.
|
2
|
+
* Duktape public API for Duktape 2.7.0.
|
3
3
|
*
|
4
4
|
* See the API reference for documentation on call semantics. The exposed,
|
5
5
|
* supported API is between the "BEGIN PUBLIC API" and "END PUBLIC API"
|
6
6
|
* comments. Other parts of the header are Duktape internal and related to
|
7
7
|
* e.g. platform/compiler/feature detection.
|
8
8
|
*
|
9
|
-
* Git commit
|
10
|
-
* Git branch
|
9
|
+
* Git commit 03d4d728f8365021de6955c649e6dcd05dcca99f (v2.7.0).
|
10
|
+
* Git branch HEAD.
|
11
11
|
*
|
12
12
|
* See Duktape AUTHORS.rst and LICENSE.txt for copyright and
|
13
13
|
* licensing information.
|
@@ -21,7 +21,7 @@
|
|
21
21
|
*
|
22
22
|
* (http://opensource.org/licenses/MIT)
|
23
23
|
*
|
24
|
-
* Copyright (c) 2013-
|
24
|
+
* Copyright (c) 2013-present by Duktape authors (see AUTHORS.rst)
|
25
25
|
*
|
26
26
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
27
27
|
* of this software and associated documentation files (the "Software"), to deal
|
@@ -110,6 +110,12 @@
|
|
110
110
|
* * Luis de Bethencourt (https://github.com/luisbg)
|
111
111
|
* * Ian Whyman (https://github.com/v00d00)
|
112
112
|
* * Rick Sayre (https://github.com/whorfin)
|
113
|
+
* * Craig Leres (https://github.com/leres)
|
114
|
+
* * Maurici Abad (https://github.com/mauriciabad)
|
115
|
+
* * Nancy Li (https://github.com/NancyLi1013)
|
116
|
+
* * William Parks (https://github.com/WilliamParks)
|
117
|
+
* * Sam Hellawell (https://github.com/samhellawell)
|
118
|
+
* * Vladislavs Sokurenko (https://github.com/sokurenko)
|
113
119
|
*
|
114
120
|
* Other contributions
|
115
121
|
* ===================
|
@@ -176,16 +182,16 @@
|
|
176
182
|
* development snapshots have 99 for patch level (e.g. 0.10.99 would be a
|
177
183
|
* development version after 0.10.0 but before the next official release).
|
178
184
|
*/
|
179
|
-
#define DUK_VERSION
|
185
|
+
#define DUK_VERSION 20700L
|
180
186
|
|
181
187
|
/* Git commit, describe, and branch for Duktape build. Useful for
|
182
188
|
* non-official snapshot builds so that application code can easily log
|
183
189
|
* which Duktape snapshot was used. Not available in the ECMAScript
|
184
190
|
* environment.
|
185
191
|
*/
|
186
|
-
#define DUK_GIT_COMMIT "
|
187
|
-
#define DUK_GIT_DESCRIBE "v2.
|
188
|
-
#define DUK_GIT_BRANCH "
|
192
|
+
#define DUK_GIT_COMMIT "03d4d728f8365021de6955c649e6dcd05dcca99f"
|
193
|
+
#define DUK_GIT_DESCRIBE "v2.7.0"
|
194
|
+
#define DUK_GIT_BRANCH "HEAD"
|
189
195
|
|
190
196
|
/* External duk_config.h provides platform/compiler/OS dependent
|
191
197
|
* typedefs and macros, and DUK_USE_xxx config options so that
|
data/lib/duktape/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: duktape
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.7.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Magnus Holm
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: judofyr@gmail.com
|