diff --git a/CHANGELOG.md b/CHANGELOG.md
index cfd7c549..105bc573 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,10 @@
## Version 17
+#### 17.1.2
+
+- Fixed TypeScript typings (#475), thanks to @ar53n (#477)
+
#### 17.1.1
- Fixing npm audit vulnerabilities
diff --git a/README.md b/README.md
index 9272ffbe..f1ae8bf2 100644
--- a/README.md
+++ b/README.md
@@ -190,7 +190,7 @@ Please note that the video poster can be lazily loaded too.
## 👩💻 Getting started - Script
-The latest, recommended version of LazyLoad is **17.1.1**.
+The latest, recommended version of LazyLoad is **17.1.2**.
Quickly understand how to upgrade from a previous version reading the [practical upgrade guide](UPGRADE.md).
@@ -207,14 +207,14 @@ If you prefer to load a polyfill, the regular LazyLoad behaviour is granted.
The easiest way to use LazyLoad is to include the script from a CDN:
```html
-
+
```
Or, with the IntersectionObserver polyfill:
```html
-
+
```
Then, in your javascript code:
@@ -246,7 +246,7 @@ Include RequireJS:
Then `require` the AMD version of LazyLoad, like this:
```js
-var lazyLoadAmdUrl = "https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.1.1/dist/lazyload.amd.min.js";
+var lazyLoadAmdUrl = "https://cdn.jsdelivr.net/npm/vanilla-lazyload@17.1.2/dist/lazyload.amd.min.js";
var polyfillAmdUrl = "https://cdn.jsdelivr.net/npm/intersection-observer-amd@2.0.1/intersection-observer-amd.js";
/// Dynamically define the dependencies
@@ -291,7 +291,7 @@ Then include the script.
```html
```
@@ -325,7 +325,7 @@ Then include the script.
```html
```
diff --git a/package.json b/package.json
index f93e83de..63383695 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "vanilla-lazyload",
- "version": "17.1.1",
+ "version": "17.1.2",
"description": "LazyLoad is a lightweight (2.4 kB) and flexible script that speeds up your web application by deferring the loading of your below-the-fold images, videos and iframes to when they will enter the viewport. It's written in plain \"vanilla\" JavaScript, it leverages the IntersectionObserver API, it supports responsive images, it optimizes your website for slower connections, and can enable native lazy loading.",
"main": "dist/lazyload.min.js",
"module": "dist/lazyload.esm.js",