diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index 8a795a3105..d77e320595 100644
--- a/BUNDLE-README.md
+++ b/BUNDLE-README.md
@@ -1,7 +1,7 @@
# Uppy
Hi, thanks for trying out the bundled version of the Uppy File Uploader. You can use
-this from a CDN (``) or bundle it with your webapp.
+this from a CDN (``) or bundle it with your webapp.
Note that the recommended way to use Uppy is to install it with yarn/npm and use a
bundler like Webpack so that you can create a smaller custom build with only the
diff --git a/CHANGELOG.md b/CHANGELOG.md
index bcd892f2af..fd4ac915eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,40 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 3.3.0
+
+Released: 2022-11-10
+
+| Package | Version | Package | Version |
+| ---------------------- | ------- | ---------------------- | ------- |
+| @uppy/angular | 0.5.0 | @uppy/image-editor | 2.1.0 |
+| @uppy/aws-s3-multipart | 3.1.0 | @uppy/locales | 3.0.4 |
+| @uppy/companion | 4.1.0 | @uppy/tus | 3.0.5 |
+| @uppy/companion-client | 3.1.0 | @uppy/utils | 5.1.0 |
+| @uppy/dashboard | 3.2.0 | uppy | 3.3.0 |
+
+- @uppy/companion: change default S3 expiry from 300 to 800 seconds (Merlijn Vos / #4206)
+- @uppy/dashboard: Single file mode (Artur Paikin / #4188)
+- @uppy/locales: Fix UZ locale (Merlijn Vos / #4178)
+- @uppy/utils: update typings for `RateLimitedQueue` (Antoine du Hamel / #4204)
+- @uppy/aws-s3-multipart: empty the queue when pausing (Antoine du Hamel / #4203)
+- @uppy/image-editor: add checkered background (Livia Medeiros / #4194)
+- @uppy/aws-s3-multipart: refactor rate limiting approach (Antoine du Hamel / #4187)
+- @uppy/companion: send expiry time along side S3 signed requests (Antoine du Hamel / #4202)
+- @uppy/companion-client: add support for `AbortSignal` (Antoine du Hamel / #4201)
+- @uppy/companion-client: prevent preflight race condition (Mikael Finstad / #4182)
+- @uppy/aws-s3-multipart: change limit to 6 (Antoine du Hamel / #4199)
+- @uppy/utils: add `cause` support for `AbortError`s (Antoine du Hamel / #4198)
+- meta: Fix bad example for setFileState (Tim Whitney / #4191)
+- meta: Update code example for getFiles (Tim Whitney / #4189)
+- meta: Fix issue with outdated comment. (Tim Whitney / #4192)
+- @uppy/aws-s3-multipart: remove unused `timeout` option (Antoine du Hamel / #4186)
+- meta: Remove dollar sign from command for easier copy/pasting (Youssef Victor / #4180)
+- @uppy/aws-s3-multipart,@uppy/tus: fix `Timed out waiting for socket` (Antoine du Hamel / #4177)
+- meta: Add note about facebook approval (Mikael Finstad / #4172)
+- meta: add a manual deploy for website (Antoine du Hamel / #4171)
+
+
## 3.2.2
Released: 2022-10-24
diff --git a/README.md b/README.md
index 977c9d3b20..85b8ebade0 100644
--- a/README.md
+++ b/README.md
@@ -67,7 +67,7 @@ const uppy = new Uppy()
npm install @uppy/core @uppy/dashboard @uppy/tus
```
-Add CSS [uppy.min.css](https://releases.transloadit.com/uppy/v3.2.2/uppy.min.css), either to your HTML page’s `
-
+
+
```
2\. Add CSS to ``:
```html
-
+
```
3\. Initialize at the bottom of the closing `` tag:
@@ -181,5 +181,5 @@ export * from '@uppy/core'
If you’re using Uppy from CDN, those polyfills are already included in the bundle, no need to include anything additionally:
```html
-
+
```
diff --git a/website/src/docs/locales.md b/website/src/docs/locales.md
index a120918e8e..2b1664ba78 100644
--- a/website/src/docs/locales.md
+++ b/website/src/docs/locales.md
@@ -34,8 +34,8 @@ const uppy = new Uppy({
Add a `
-
+
+
+
-
-
+
+
```
Please note that while you may be able to get 2.0 to work in IE11 this way, we do not officially support it anymore.
diff --git a/website/src/examples/dashboard/app.es6 b/website/src/examples/dashboard/app.es6
index ab93105902..d9bc4283c5 100644
--- a/website/src/examples/dashboard/app.es6
+++ b/website/src/examples/dashboard/app.es6
@@ -242,7 +242,7 @@ function loadLocaleFromCDN (localeName) {
const head = document.getElementsByTagName('head')[0]
const js = document.createElement('script')
js.type = 'text/javascript'
- js.src = `https://releases.transloadit.com/uppy/locales/v3.0.3/${localeName}.min.js`
+ js.src = `https://releases.transloadit.com/uppy/locales/v3.0.4/${localeName}.min.js`
head.appendChild(js)
}
diff --git a/website/src/examples/i18n/app.html b/website/src/examples/i18n/app.html
index 87118a692f..04e7534656 100644
--- a/website/src/examples/i18n/app.html
+++ b/website/src/examples/i18n/app.html
@@ -1,7 +1,7 @@
-
+
@@ -12,9 +12,9 @@