File tree Expand file tree Collapse file tree 7 files changed +23
-4
lines changed Expand file tree Collapse file tree 7 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 7
7
- 0.1.0
8
8
- 0.2
9
9
- 0.3
10
+ - 0.4
10
11
- ci_check
11
12
jobs :
12
13
build-ubuntu :
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ branches:
6
6
- 0.1.0
7
7
- 0.2
8
8
- 0.3
9
+ - 0.4
9
10
- ci_check
10
11
before_install :
11
12
- 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-06-30 version 0.4.0 (generator/QtProtobuf/QtGrpc)
2
+
3
+ QtProtobuf
4
+ * Improve serializer reentrancy
5
+ * Add static linking for quick plugins
6
+ * Add basic tutorial
7
+ * Replace qtprotobuf_link_archive with qtprotobuf_link_target
8
+ * Fix static build for well-known types
9
+ * Fix CPack packaging paths
10
+ * Implement "invalid" fields handling in json serializer
11
+ QtGrpc
12
+ * Add QML gRPC API
13
+ generator
14
+ * Refactor generator
15
+ * Implement nested types support
16
+
1
17
2020-05-01 version 0.3.0 (generator/QtProtobuf)
2
18
3
19
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.3 .0 )
3
+ set (QT_PROTOBUF_VERSION 0.4 .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 @@ -13,6 +13,7 @@ QtProtobuf provides Qt-native support of Google protocol buffers. Generated code
13
13
| [ 0.1.0] ( https://github.com/semlanik/qtprotobuf/tree/0.1.0 ) | ![ ] ( https://github.com/semlanik/qtprotobuf/workflows/Test%20Verification/badge.svg?branch=0.1.0 ) | ![ ] ( https://travis-ci.com/semlanik/qtprotobuf.svg?branch=0.1.0 ) |
14
14
| [ 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 ) |
15
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 ) |
16
+ | [ 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 ) |
16
17
17
18
18
19
# Table of contents
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.3
30
- import QtGrpc 0.3
29
+ import QtProtobuf 0.4
30
+ import QtGrpc 0.4
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.3
29
+ import QtProtobuf 0.4
30
30
import qtprotobufnamespace.tests 1.0
31
31
32
32
TestCase {
You can’t perform that action at this time.
0 commit comments