Skip to content

Commit

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

var VERSION = '24.0.0';
var VERSION = '25.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 @@ -874,7 +874,7 @@ var Tween = /** @class */ (function () {
return Tween;
}());

var VERSION = '24.0.0';
var VERSION = '25.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 @@ -193,7 +193,7 @@ declare class Sequence {
static nextId(): number;
}

declare const VERSION = "24.0.0";
declare const VERSION = "25.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 @@ -870,7 +870,7 @@ var Tween = /** @class */ (function () {
return Tween;
}());

var VERSION = '24.0.0';
var VERSION = '25.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 @@ -876,7 +876,7 @@
return Tween;
}());

var VERSION = '24.0.0';
var VERSION = '25.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": "24.0.0",
"version": "25.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 = '24.0.0'
const VERSION = '25.0.0'
export default VERSION

0 comments on commit eb07dd2

Please sign in to comment.