Skip to content

Commit

Permalink
Prerelease changes (#476)
Browse files Browse the repository at this point in the history
* Prerelease changes

* Corrections
  • Loading branch information
tsujan authored Apr 16, 2022
1 parent 9327fc1 commit a4be489
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
qtermwidget-1.1.0 / 2022-04-15
===============================
* Handled the zero history size.
* Removed an unused variable.
* Corrected some code indentations.
* Added API documentation and followed naming convention.
* Return focus to terminal on closing search bar.
* Moved to SIP 5.x wth PyQt.
* Added contexts to some lambda connections.

qtermwidget-1.0.0 / 2021-11-04
===============================
* Bumped minimum required Qt version to 5.15.
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ option(USE_UTF8PROC "Use libutf8proc for better Unicode support. Default OFF" OF
# just change version for releases
# keep this in sync with the version in pyqt/pyproject.toml
set(QTERMWIDGET_VERSION_MAJOR "1")
set(QTERMWIDGET_VERSION_MINOR "0")
set(QTERMWIDGET_VERSION_MINOR "1")
set(QTERMWIDGET_VERSION_PATCH "0")

set(QTERMWIDGET_VERSION "${QTERMWIDGET_VERSION_MAJOR}.${QTERMWIDGET_VERSION_MINOR}.${QTERMWIDGET_VERSION_PATCH}")
Expand All @@ -33,7 +33,7 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)

# Minimum Versions
set(QT_MINIMUM_VERSION "5.15.0")
set(LXQTBT_MINIMUM_VERSION "0.10.0")
set(LXQTBT_MINIMUM_VERSION "0.11.0")

find_package(Qt5Widgets "${QT_MINIMUM_VERSION}" REQUIRED)
find_package(Qt5LinguistTools "${QT_MINIMUM_VERSION}" REQUIRED)
Expand Down
2 changes: 1 addition & 1 deletion pyqt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ build-backend = "sipbuild.api"

[tool.sip.metadata]
name = "QTermWidget"
version = "1.0.0"
version = "1.1.0"
requires-dist = ["PyQt5"]

0 comments on commit a4be489

Please sign in to comment.