Skip to content

Commit

Permalink
Release version 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
aperezdc committed Nov 3, 2021
1 parent 8e5c8b3 commit 52f804f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required (VERSION 3.3)
list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}/cmake")
include(VersioningUtils)

set_project_version(0 9 1)
set_project_version(0 11 1)

# Before making a release, the LT_VERSION string should be modified.
# The string is of the form C:R:A.
Expand All @@ -12,7 +12,7 @@ set_project_version(0 9 1)
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
calculate_library_versions_from_libtool_triple(COGCORE 5 0 4)
calculate_library_versions_from_libtool_triple(COGCORE 6 0 5)

project(cog VERSION "${PROJECT_VERSION}" LANGUAGES C)
include(DistTargets)
Expand Down
23 changes: 23 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
=========================
0.11.1 - November 3, 2021
=========================

- core: Changed platform plug-ins to be able to automatically detect which
one should be used. Passing the "--platform=" command line option to the
launcher is now optional.
- core: Added support for building against libsoup3.
- core: Added CogHostRoutesHandler, which can route URI scheme requests
with different host parts to other handlers.
- core, cog: Added support for running in WebDriver automation mode.
- cog: New "--enable-sandbox" command line option, which allows isolating
rendering processes from the rest of the system.
- cog: New "--content-filter=" command line option, which allows loading
a content blocker (WebKitUserContentFilter) JSON rule set.
- drm: Implemented handling of pointer axis/wheel/finger/continuous events
and absolute motion events.
- wl: Renamed "fdo" platform module to "wl" (Wayland) as it better reflects
its usage; the old name still works e.g. when using "cog --platform=fdo"
but it is considered deprecated and will cause a warning.
- wl, gtk4: Added support for fullscreening web views.
- gtk4: Honor the CogShell.device-scale-factor property.

======================
0.9.1 - March 16, 2021
======================
Expand Down

0 comments on commit 52f804f

Please sign in to comment.