Skip to content

Commit

Permalink
chore: Prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
eonarheim committed Jul 8, 2022
1 parent 8249e4f commit 35a88c9
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 5 deletions.
47 changes: 44 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,42 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).


## [Unreleased]

## Breaking Changes
### Breaking Changes

-

### Deprecated

-

### Added

-

### Fixed

-

### Updates

-

### Changed

-



<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->
<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->
<!--------------------------------- DO NOT EDIT BELOW THIS LINE --------------------------------->

## [0.27.0] - 2022-07-08

### Breaking Changes

- `ex.Engine.snapToPixel` now defaults to `false`, it was unexpected to have pixel snapping on by default it has now been switched.
- The `ex.Physics.useRealisticPhysics()` physics solver has been updated to fix a bug in bounciness to be more physically accurate, this does change how physics behaves. Setting `ex.Body.bounciness = 0` will simulate the old behavior.
Expand Down Expand Up @@ -128,6 +161,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).

engine.goToScene('sceneA', { foo: 'bar' })
```
- Added the ability to select variable duration into Timer constructor.
```typescript
const random = new ex.Random(1337);
const timer = new ex.Timer({
random,
interval: 500,
randomRange: [0, 500]
})
```

### Fixed

Expand Down Expand Up @@ -170,7 +212,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [0.26.0] - 2022-05-20

## Breaking Changes
### Breaking Changes

- `ex.Line` has be replaced with a new Graphics type, the old geometric behavior is now under the type `ex.LineSegment`
- Notable deprecated types removed
Expand Down Expand Up @@ -308,7 +350,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Added new display mode `ex.DisplayMode.FitScreenAndFill`.
- Added new display mode `ex.DisplayMode.FitContainerAndZoom`.
- Added new display mode `ex.DisplayMode.FitScreenAndZoom`.
- Added the ability to select variable duration into Timer constructor.
### Fixed

- Fixed unreleased issue where fixed update interpolation was incorrect with child actors
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "excalibur",
"sideEffects": false,
"version": "0.26.0",
"exNextVersion": "0.27.0",
"version": "0.27.0",
"exNextVersion": "0.28.0",
"description": "Excalibur.js is a simple JavaScript game engine with TypeScript bindings for making 2D games in HTML5 Canvas. Our mission is to make web game development as simple as possible.",
"author": "https://github.com/excaliburjs/Excalibur/graphs/contributors",
"homepage": "https://github.com/excaliburjs/Excalibur",
Expand Down

0 comments on commit 35a88c9

Please sign in to comment.