diff --git a/README.md b/README.md
index 37ac655..c8c49bb 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@ Note, the OSM API, particularly the part to download the map data, is intended o
## Copyright and License
-© 2016-2021 Tobias Zwick. This library is released under the terms of the [GNU Lesser General Public License](http://www.gnu.org/licenses/lgpl-3.0.html) (LGPL).
+© 2016-2023 Tobias Zwick. This library is released under the terms of the [GNU Lesser General Public License](http://www.gnu.org/licenses/lgpl-3.0.html) (LGPL).
## Installation
@@ -18,16 +18,16 @@ Depending on which part of the API you use, you can only include what you need:
Class | Dependency | Description |
CapabilitiesApi | de.westnordost:osmapi-core:2.0 | Getting server capabilities |
PermissionsApi | de.westnordost:osmapi-core:2.0 | Getting user permissions |
-MapDataApi | de.westnordost:osmapi-map:2.0 | Getting map data, querying single elements and their relations toward each other and uploading changes in changesets |
-MapDataHistoryApi | de.westnordost:osmapi-map:2.0 | Getting the history and specific versions of elements |
+MapDataApi | de.westnordost:osmapi-map:2.1 | Getting map data, querying single elements and their relations toward each other and uploading changes in changesets |
+MapDataHistoryApi | de.westnordost:osmapi-map:2.1 | Getting the history and specific versions of elements |
NotesApi | de.westnordost:osmapi-notes:2.0 | Getting finding, creating, commenting on and solving notes |
GpsTracesApi | de.westnordost:osmapi-traces:2.0 | Getting, uploading, updating and deleting GPS traces and trackpoints |
-ChangesetsApi | de.westnordost:osmapi-changesets:2.0 | Finding changesets, changeset discussion, subscription and data |
+ChangesetsApi | de.westnordost:osmapi-changesets:2.1 | Finding changesets, changeset discussion, subscription and data |
UserApi | de.westnordost:osmapi-user:2.0 | Getting user information |
UserPreferencesApi | de.westnordost:osmapi-user:2.0 | Managing user preferences |
-To include everything, add [`de.westnordost:osmapi:4.0`](https://mvnrepository.com/artifact/de.westnordost/osmapi/4.0) as a Maven dependency or download the jar from there.
+To include everything, add [`de.westnordost:osmapi:4.1`](https://mvnrepository.com/artifact/de.westnordost/osmapi/4.0) as a Maven dependency or download the jar from there.
### Android
diff --git a/build.gradle b/build.gradle
index ecd1da9..4b829b9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -13,11 +13,11 @@ subprojects {
}
ext {
- all_version = 4.0
+ all_version = 4.1
core_version = 2.0
- changesets_version = 2.0
+ changesets_version = 2.1
user_version = 2.0
traces_version = 2.0
notes_version = 2.0
- map_version = 2.0
+ map_version = 2.1
}
\ No newline at end of file