Skip to content

Commit e1eec1a

Browse files
committed
Release v0.1.4
1 parent 31a1046 commit e1eec1a

4 files changed

Lines changed: 9 additions & 3 deletions

File tree

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017-2021 Daurnimator
3+
Copyright (c) 2017-2025 Daurnimator
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

NEWS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
0.1.4 - 2025-12-21
2+
3+
- new globalThis compat routine
4+
5+
16
0.1.3 - 2021-11-30
27

38
- call Function lazily to avoid triggering CSP
49

10+
511
0.1.2 - 2018-04-23
612

713
- Use indirect eval to get reference to global environment

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fengari-interop",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "JS library for Fengari",
55
"author": "Daurnimator <quae@daurnimator.com>",
66
"repository": {

src/js.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const {
7878
const FENGARI_INTEROP_VERSION_MAJOR = "0";
7979
const FENGARI_INTEROP_VERSION_MINOR = "1";
8080
const FENGARI_INTEROP_VERSION_NUM = 1;
81-
const FENGARI_INTEROP_VERSION_RELEASE = "3";
81+
const FENGARI_INTEROP_VERSION_RELEASE = "4";
8282
const FENGARI_INTEROP_VERSION = FENGARI_INTEROP_VERSION_MAJOR + "." + FENGARI_INTEROP_VERSION_MINOR;
8383
const FENGARI_INTEROP_RELEASE = FENGARI_INTEROP_VERSION + "." + FENGARI_INTEROP_VERSION_RELEASE;
8484

0 commit comments

Comments
 (0)