Skip to content

Commit

Permalink
v23.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed May 5, 2024
1 parent 3267276 commit ea96cb3
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dist/tween.amd.js
Original file line number Diff line number Diff line change
Expand Up @@ -843,7 +843,7 @@ define(['exports'], (function (exports) { 'use strict';
return Tween;
}());

var VERSION = '23.1.1';
var VERSION = '23.1.2';

/**
* Tween.js - Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion dist/tween.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ var Tween = /** @class */ (function () {
return Tween;
}());

var VERSION = '23.1.1';
var VERSION = '23.1.2';

/**
* Tween.js - Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion dist/tween.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ declare class Sequence {
static nextId(): number;
}

declare const VERSION = "23.1.1";
declare const VERSION = "23.1.2";

declare const nextId: typeof Sequence.nextId;
declare const getAll: () => Tween<UnknownProps>[];
Expand Down
2 changes: 1 addition & 1 deletion dist/tween.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,7 @@ var Tween = /** @class */ (function () {
return Tween;
}());

var VERSION = '23.1.1';
var VERSION = '23.1.2';

/**
* Tween.js - Licensed under the MIT license
Expand Down
2 changes: 1 addition & 1 deletion dist/tween.umd.js
Original file line number Diff line number Diff line change
Expand Up @@ -847,7 +847,7 @@
return Tween;
}());

var VERSION = '23.1.1';
var VERSION = '23.1.2';

/**
* Tween.js - Licensed under the MIT license
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tweenjs/tween.js",
"description": "Simple and fast tweening engine with optimised Robert Penner's equations.",
"version": "23.1.1",
"version": "23.1.2",
"type": "module",
"main": "dist/tween.cjs",
"types": "dist/tween.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/Version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const VERSION = '23.1.1'
const VERSION = '23.1.2'
export default VERSION

0 comments on commit ea96cb3

Please sign in to comment.