Skip to content

Commit

Permalink
v24.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Jul 26, 2024
1 parent 20169e2 commit c92f761
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 @@ -867,7 +867,7 @@ define(['exports'], (function (exports) { 'use strict';
return Tween;
}());

var VERSION = '23.1.3';
var VERSION = '24.0.0';

/**
* 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 @@ -869,7 +869,7 @@ var Tween = /** @class */ (function () {
return Tween;
}());

var VERSION = '23.1.3';
var VERSION = '24.0.0';

/**
* 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 @@ -188,7 +188,7 @@ declare class Sequence {
static nextId(): number;
}

declare const VERSION = "23.1.3";
declare const VERSION = "24.0.0";

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

var VERSION = '23.1.3';
var VERSION = '24.0.0';

/**
* 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 @@ -871,7 +871,7 @@
return Tween;
}());

var VERSION = '23.1.3';
var VERSION = '24.0.0';

/**
* 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.3",
"version": "24.0.0",
"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.3'
const VERSION = '24.0.0'
export default VERSION

0 comments on commit c92f761

Please sign in to comment.