diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7133443..7fbc66c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -94,7 +94,7 @@ Released on October 6, 2022
## 0.4.3
-Unreleased
+Released on November 28, 2022
- Added a deprecation notice to the read me, as the project will soon be discontinued
- Added a migration guide, to help existing users to easily migrate to the official DeepL .NET binding
diff --git a/LICENSE b/LICENSE
index e12d628..976cd3a 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,6 @@
MIT License
-Copyright (c) 2020 David Neumann
+Copyright (c) 2022 David Neumann
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
diff --git a/README.md b/README.md
index f4cd37f..6ad6b18 100644
--- a/README.md
+++ b/README.md
@@ -6,7 +6,7 @@
[![Nuget Package](https://img.shields.io/nuget/v/DeepL)](https://www.nuget.org/packages/DeepL)
[![Nuget Downloads](https://img.shields.io/nuget/dt/DeepL)](https://www.nuget.org/packages/DeepL)
-> :warning: **DEPRECATION NOTICE** For some time now, an [official .NET binding for DeepL](https://github.com/DeepLcom/deepl-dotnet) has been available. This unofficial .NET binding has only been created, because, at the time, there was no official .NET binding. Therefore, this .NET binding will be deprecated soon. This means that this project will only receive security updates and bug fixes, but no new features will be added from now on. Also, the `DeepLClient` class was made obsolete and a compiler warning will be issued, when you use it. On **February 14, 2023**, the project will seize to receive any updates, the repository will be put into archived mode, and the accompanying NuGet package will be deprecated. To help you with the transition, please refer to the [migration guide](https://github.com/lecode-official/deepl-dotnet/blob/master/documentation/migration-guide.md)
+> :warning: **DEPRECATION NOTICE** For some time now, an [official .NET binding for DeepL](https://github.com/DeepLcom/deepl-dotnet) has been available. This unofficial .NET binding has only been created, because, at the time, there was no official .NET binding. Therefore, this .NET binding will be deprecated soon. This means that this project will only receive security updates and bug fixes, but no new features will be added from now on. Also, the `DeepLClient` class was made obsolete and a compiler warning will be issued, when you use it. On **February 28, 2023**, the project will seize to receive any updates, the repository will be put into archived mode, and the accompanying NuGet package will be deprecated. To help you with the transition, please refer to the [migration guide](https://github.com/lecode-official/deepl-dotnet/blob/master/documentation/migration-guide.md)
An unofficial, fully-featured .NET client for the [DeepL](https://www.deepl.com/translator) translation service. DeepL is a commercial translation service based on deep learning. This API client only supports v2 of the API as v1 has been deprecated for new DeepL API plans available from October 2018.
diff --git a/documentation/documentation.md b/documentation/documentation.md
index a146d06..df3ad00 100644
--- a/documentation/documentation.md
+++ b/documentation/documentation.md
@@ -2,7 +2,7 @@
![DeepL.NET Logo](https://raw.githubusercontent.com/lecode-official/deepl-dotnet/master/documentation/images/banner.png "DeepL.NET Logo")
-> :warning: **DEPRECATION NOTICE** For some time now, an [official .NET binding for DeepL](https://github.com/DeepLcom/deepl-dotnet) has been available. This unofficial .NET binding has only been created, because, at the time, there was no official .NET binding. Therefore, this .NET binding will be deprecated soon. This means that this project will only receive security updates and bug fixes, but no new features will be added from now on. Also, the `DeepLClient` class was made obsolete and a compiler warning will be issued, when you use it. On **February 14, 2023**, the project will seize to receive any updates, the repository will be put into archived mode, and the accompanying NuGet package will be deprecated. To help you with the transition, please refer to the [migration guide](https://github.com/lecode-official/deepl-dotnet/blob/master/documentation/migration-guide.md)
+> :warning: **DEPRECATION NOTICE** For some time now, an [official .NET binding for DeepL](https://github.com/DeepLcom/deepl-dotnet) has been available. This unofficial .NET binding has only been created, because, at the time, there was no official .NET binding. Therefore, this .NET binding will be deprecated soon. This means that this project will only receive security updates and bug fixes, but no new features will be added from now on. Also, the `DeepLClient` class was made obsolete and a compiler warning will be issued, when you use it. On **February 28, 2023**, the project will seize to receive any updates, the repository will be put into archived mode, and the accompanying NuGet package will be deprecated. To help you with the transition, please refer to the [migration guide](https://github.com/lecode-official/deepl-dotnet/blob/master/documentation/migration-guide.md)
Welcome to the documentation of DeepL.NET. DeepL.NET is a C# library for accessing the DeepL translation REST API. Please note that DeepL.NET only supports v2 of the API, as v1 is deprecated. In order to use DeepL.NET you need to have a [DeepL API subscription](https://www.deepl.com/pro.html#developer). For further information about the DeepL API, please refer to the [official documentation](https://www.deepl.com/docs-api/introduction/).
diff --git a/source/DeepL/DeepL.csproj b/source/DeepL/DeepL.csproj
index 1f1d5fe..1016a68 100644
--- a/source/DeepL/DeepL.csproj
+++ b/source/DeepL/DeepL.csproj
@@ -23,6 +23,7 @@
deepl;translation;deep learning;nlp;natural language processing
- Added a deprecation notice to the read me, as the project will soon be discontinued
+- Added a migration guide, to help existing users to easily migrate to the official DeepL .NET binding
- Made the DeepLClient class obsolete, so that users will receive a compiler warning, concerning the deprecation of DeepL.NET
MIT