Skip to content

Commit 4f63b15

Browse files
committed
Version 0.5.0
1 parent c2ac558 commit 4f63b15

File tree

8 files changed

+23
-5
lines changed

8 files changed

+23
-5
lines changed

.github/workflows/branchpush.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- 0.2
99
- 0.3
1010
- 0.4
11+
- 0.5
1112
- ci_check
1213
jobs:
1314
build-ubuntu:

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ branches:
77
- 0.2
88
- 0.3
99
- 0.4
10+
- 0.5
1011
- ci_check
1112
before_install:
1213
- wget -q https://download.qt.io/official_releases/qt/5.13/5.13.2/qt-opensource-windows-x86-5.13.2.exe

CHANGES.txt

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2020-08-31 version 0.5.0 (generator/QtProtobuf/QtGrpc)
2+
QtProtobuf
3+
* Change the qmake executable lookup way
4+
* Complete implementation of Qt types support
5+
* Add Conan support
6+
* Rework static build
7+
QrGrpc
8+
* Apply thread safety to grpc calls and subscription
9+
* Add subscription cancellation for QQuickGrpcSubscription
10+
* Reset all fields to default values before serialization
11+
* Fix QML GRPC functions generator template
12+
* Add "returnValue" property to qml GrpcSubscription
13+
generator
14+
* Add conversion of google.protobuf.Timestamp
15+
116
2020-06-30 version 0.4.0 (generator/QtProtobuf/QtGrpc)
217

318
QtProtobuf

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.6)
22

3-
set(QT_PROTOBUF_VERSION 0.4.0)
3+
set(QT_PROTOBUF_VERSION 0.5.0)
44
set(QT_PROTOBUF_PROJECT QtProtobufProject)
55

66
project(${QT_PROTOBUF_PROJECT} VERSION ${QT_PROTOBUF_VERSION} LANGUAGES CXX)

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ QtProtobuf provides Qt-native support of Google protocol buffers. Generated code
1010
| Branch | Results Linux | Results Windows | Support |
1111
| --- | --- | --- | --- |
1212
| [master](https://github.com/semlanik/qtprotobuf/tree/master) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=master) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=master) | :heavy_check_mark: |
13+
| [0.5](https://github.com/semlanik/qtprotobuf/tree/0.5) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.5) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.5) | :heavy_check_mark: |
1314
| [0.4](https://github.com/semlanik/qtprotobuf/tree/0.4) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.4) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.4) | :heavy_check_mark: |
1415
| [0.3](https://github.com/semlanik/qtprotobuf/tree/0.3) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.3) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.3) | :heavy_check_mark: |
1516
| [0.2](https://github.com/semlanik/qtprotobuf/tree/0.2) | ![](https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.2) | ![](https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.2) | |

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
class QtProtobufConan(ConanFile):
66
name = "qtprotobuf"
7-
version = "0.4.0"
7+
version = "0.5.0"
88
license = "MIT"
99
url = "https://github.com/semlanik/qtprotobuf"
1010
description = ("gRPC and Protobuf generator and bindings for Qt framework")

tests/test_grpc_qml/qml/tst_grpc.qml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
import QtQuick 2.12
2727
import QtTest 1.0
2828

29-
import QtProtobuf 0.4
30-
import QtGrpc 0.4
29+
import QtProtobuf 0.5
30+
import QtGrpc 0.5
3131
import qtprotobufnamespace.tests 1.0
3232

3333
TestCase {

tests/test_qml/qml/tst_simple.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import QtQuick 2.12
2727
import QtTest 1.0
2828

29-
import QtProtobuf 0.4
29+
import QtProtobuf 0.5
3030
import qtprotobufnamespace.tests 1.0
3131

3232
TestCase {

0 commit comments

Comments
 (0)