File tree Expand file tree Collapse file tree 8 files changed +23
-5
lines changed Expand file tree Collapse file tree 8 files changed +23
-5
lines changed Original file line number Diff line number Diff line change 8
8
- 0.2
9
9
- 0.3
10
10
- 0.4
11
+ - 0.5
11
12
- ci_check
12
13
jobs :
13
14
build-ubuntu :
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ branches:
7
7
- 0.2
8
8
- 0.3
9
9
- 0.4
10
+ - 0.5
10
11
- ci_check
11
12
before_install :
12
13
- wget -q https://download.qt.io/official_releases/qt/5.13/5.13.2/qt-opensource-windows-x86-5.13.2.exe
Original file line number Diff line number Diff line change
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
+
1
16
2020-06-30 version 0.4.0 (generator/QtProtobuf/QtGrpc)
2
17
3
18
QtProtobuf
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.6 )
2
2
3
- set (QT_PROTOBUF_VERSION 0.4 .0 )
3
+ set (QT_PROTOBUF_VERSION 0.5 .0 )
4
4
set (QT_PROTOBUF_PROJECT QtProtobufProject )
5
5
6
6
project (${QT_PROTOBUF_PROJECT} VERSION ${QT_PROTOBUF_VERSION} LANGUAGES CXX )
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ QtProtobuf provides Qt-native support of Google protocol buffers. Generated code
10
10
| Branch | Results Linux | Results Windows | Support |
11
11
| --- | --- | --- | --- |
12
12
| [ 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 : |
13
14
| [ 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 : |
14
15
| [ 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 : |
15
16
| [ 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 ) | |
Original file line number Diff line number Diff line change 4
4
5
5
class QtProtobufConan (ConanFile ):
6
6
name = "qtprotobuf"
7
- version = "0.4 .0"
7
+ version = "0.5 .0"
8
8
license = "MIT"
9
9
url = "https://github.com/semlanik/qtprotobuf"
10
10
description = ("gRPC and Protobuf generator and bindings for Qt framework" )
Original file line number Diff line number Diff line change 26
26
import QtQuick 2.12
27
27
import QtTest 1.0
28
28
29
- import QtProtobuf 0.4
30
- import QtGrpc 0.4
29
+ import QtProtobuf 0.5
30
+ import QtGrpc 0.5
31
31
import qtprotobufnamespace.tests 1.0
32
32
33
33
TestCase {
Original file line number Diff line number Diff line change 26
26
import QtQuick 2.12
27
27
import QtTest 1.0
28
28
29
- import QtProtobuf 0.4
29
+ import QtProtobuf 0.5
30
30
import qtprotobufnamespace.tests 1.0
31
31
32
32
TestCase {
You can’t perform that action at this time.
0 commit comments