diff --git a/BUNDLE-README.md b/BUNDLE-README.md
index ae78dcc0d8..a40861799e 100644
--- a/BUNDLE-README.md
+++ b/BUNDLE-README.md
@@ -2,7 +2,7 @@
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.
Note that the recommended way to use Uppy is to install it with yarn/npm and use
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d4946ffb7a..ad09abe29e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -12,6 +12,22 @@ Please add your entries in this format:
In the current stage we aim to release a new version at least every month.
+## 4.13.1
+
+Released: 2025-01-22
+
+| Package | Version | Package | Version |
+| --------------- | ------- | --------------- | ------- |
+| @uppy/aws-s3 | 4.2.3 | @uppy/tus | 4.2.2 |
+| @uppy/companion | 5.5.1 | uppy | 4.13.1 |
+
+- @uppy/tus: fix resumeFromPreviousUpload race condition (Merlijn Vos / #5616)
+- @uppy/aws-s3: Fixed default shouldUseMultipart (Mika Laitinen / #5613)
+- meta: build(deps): bump docker/build-push-action from 6.11.0 to 6.12.0 (dependabot[bot] / #5611)
+- @uppy/aws-s3: remove console.error (Mikael Finstad / #5607)
+- @uppy/companion: unify http error responses (Mikael Finstad / #5595)
+
+
## 4.13.0
Released: 2025-01-15
diff --git a/README.md b/README.md
index 21328c6efa..d1ba288f80 100644
--- a/README.md
+++ b/README.md
@@ -87,7 +87,7 @@ npm install @uppy/core @uppy/dashboard @uppy/tus
```
Add CSS
-[uppy.min.css](https://releases.transloadit.com/uppy/v4.13.0/uppy.min.css),
+[uppy.min.css](https://releases.transloadit.com/uppy/v4.13.1/uppy.min.css),
either to your HTML page’s `
` or include in JS, if your bundler of choice
supports it.
@@ -101,7 +101,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
```html
@@ -112,7 +112,7 @@ CDN. In that case `Uppy` will attach itself to the global `window.Uppy` object.
Uppy,
Dashboard,
Tus,
- } from 'https://releases.transloadit.com/uppy/v4.13.0/uppy.min.mjs'
+ } from 'https://releases.transloadit.com/uppy/v4.13.1/uppy.min.mjs'
const uppy = new Uppy()
uppy.use(Dashboard, { target: '#files-drag-drop' })
@@ -322,9 +322,9 @@ Use Uppy in your project?