summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Noël <tintou@noel.tf>2022-04-09 00:37:47 +0200
committerCorentin Noël <tintou@noel.tf>2022-04-09 00:45:03 +0200
commitc70dd86775d37627964657c094cfbb0caa0415e1 (patch)
treee6cd6e3fe8cb74a3b2acda8fe3e3eff83da34250
parentde604302e51798713da57cf616bd264da934719b (diff)
downloadgcr-c70dd86775d37627964657c094cfbb0caa0415e1.tar.gz
meson: Bump gcr and gck api_versions
It is now gcr4 and gck2.
-rw-r--r--.gitlab-ci.yml8
-rw-r--r--README.md7
-rw-r--r--meson.build8
3 files changed, 15 insertions, 8 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9e5b1ee..0d6f57c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -99,10 +99,10 @@ pages:
- mv gcr-3/_build/docs/gcr/gcr-3 public/gcr-3
- mv gcr-3/_build/docs/ui/gcr-ui-3 public/gcr-ui-3
- mv _build/meson-logs/coveragereport public/coverage
- - mv _build/docs/gck/gck-1 public/gck-2
- - mv _build/docs/gcr/gcr-3 public/gcr-4
- - mv _build/docs/gcr-gtk3/gcr-3-gtk3 public/gcr-4-gtk3
- - mv _build/docs/gcr-gtk4/gcr-3-gtk4 public/gcr-4-gtk4
+ - mv _build/docs/gck/gck-2 public/gck-2
+ - mv _build/docs/gcr/gcr-4 public/gcr-4
+ - mv _build/docs/gcr-gtk3/gcr-4-gtk3 public/gcr-4-gtk3
+ - mv _build/docs/gcr-gtk4/gcr-4-gtk4 public/gcr-4-gtk4
artifacts:
when: on_success
paths:
diff --git a/README.md b/README.md
index 7013994..dd3d4f8 100644
--- a/README.md
+++ b/README.md
@@ -33,6 +33,13 @@ The documentation for GCR and GCK is built using [gi-docgen].
You can find the nightly documentation at:
+* Gck: https://gnome.pages.gitlab.gnome.org/gcr/gck-2/
+* Gcr: https://gnome.pages.gitlab.gnome.org/gcr/gcr-4/
+* GcrGtk4: https://gnome.pages.gitlab.gnome.org/gcr/gcr-4-gtk4/
+* GcrGtk3: https://gnome.pages.gitlab.gnome.org/gcr/gcr-4-gtk3/
+
+You can find the older GCR documentation at:
+
* Gck: https://gnome.pages.gitlab.gnome.org/gcr/gck-1/
* Gcr: https://gnome.pages.gitlab.gnome.org/gcr/gcr-3/
* GcrUI: https://gnome.pages.gitlab.gnome.org/gcr/gcr-ui-3/
diff --git a/meson.build b/meson.build
index 9d708b9..dd70d01 100644
--- a/meson.build
+++ b/meson.build
@@ -9,16 +9,16 @@ i18n = import('i18n')
pkgconfig = import('pkgconfig')
# Versioning
-gcr_api_version = '3'
+gcr_api_version = '4'
gcr_version = meson.project_version()
-gcr_soversion = '1.0.0'
+gcr_soversion = '0.0.0'
gcr_version_array = gcr_version.split('.')
gcr_major_version = gcr_version_array[0].to_int()
gcr_minor_version = gcr_version_array[1].to_int()
gcr_micro_version = gcr_version_array[2].to_int()
-gck_api_version = '1'
-gck_version = '1.0.0'
+gck_api_version = '2'
+gck_version = '1.90.0'
gck_soversion = '0.0.0'
gck_version_array = gck_version.split('.')
gck_major_version = gck_version_array[0].to_int()