diff --git a/CHANGELOG.md b/CHANGELOG.md
index f8ecbff1..e6806add 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+# 1.2.1
+
+- Better support for exams without grade
+- Highlight passed and failed exams
+- Thanks to @eltos for the pull request (#8)!
+
# 1.2.0
- Allow scraping of universities which provide multiple grade entry tables for each semester
diff --git a/README.md b/README.md
index a2df686a..c43d947d 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
> [MyGrades](https://mygrades.de/) Android App
[![Apache2 License](https://img.shields.io/badge/license-APACHE2-blue.svg?style=flat-square)](/LICENSE)
-[![MyGrades Version](https://img.shields.io/badge/mygrades-1.2.0-8BC34A.svg?style=flat-square)](https://mygrades.de)
+[![MyGrades Version](https://img.shields.io/badge/mygrades-1.2.1-8BC34A.svg?style=flat-square)](https://mygrades.de)
MyGrades is an Android App developed by [Tilman Ginzel](https://github.com/tilmanginzel) and [Jonas Theis](https://github.com/jonastheis). Its main purpose is to scrape a students grades from her/his respective university's website. To do so, it simulates a browser which follows a sequence of URLs and extracts the desired information with XPATH (web scraping). The core functionality is based on our Android App [Scrapp](https://github.com/tilmanginzel/scrapp), which we developed during our studies at the RheinMain University of Applied Sciences. Special thanks to [Rahel Habacker](https://github.com/RedHilarious)!
@@ -60,7 +60,7 @@ This project is licensed under the [Apache Software License, Version 2.0](http:/
See [`LICENSE`](LICENSE) for more information.
- Copyright 2015-2016 Jonas Theis, Tilman Ginzel
+ Copyright 2015-2018 Jonas Theis, Tilman Ginzel
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/app/build.gradle b/app/build.gradle
index 794b90b5..f277c5b4 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -8,8 +8,8 @@ android {
applicationId 'de.mygrades'
minSdkVersion 16
targetSdkVersion 25
- versionCode 19
- versionName "1.2.0"
+ versionCode 20
+ versionName "1.2.1"
vectorDrawables.useSupportLibrary = true
}
buildTypes {