Skip to content

Commit

Permalink
-> v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Apr 25, 2019
1 parent 2fdf7d4 commit a06f92a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Svelte changelog

## 3.0.1

* Prevent text input cursor jumping in Safari ([#2506](https://github.com/sveltejs/svelte/issues/2506))
* Allow assignments to member expressions ([#2510](https://github.com/sveltejs/svelte/issues/2510))
* Prevent mutually dependent functions causing an infinite during hoisting ([#2542](https://github.com/sveltejs/svelte/issues/2542))
* Reuse scheduler promise instead of creating new one each time ([#2555](https://github.com/sveltejs/svelte/pull/2555))
* Various site/docs fixes

## 3.0.0

* Everything
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svelte",
"version": "3.0.0",
"version": "3.0.1",
"description": "Cybernetically enhanced web apps",
"module": "index.mjs",
"main": "index",
Expand Down

2 comments on commit a06f92a

@DanielRuf
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

v1.0.0?

@Rich-Harris
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yeah, I ran my release script from the site folder, and it pushed the wrong git tag. Doesn't seem to have affected the releases page

Please sign in to comment.