File tree Expand file tree Collapse file tree 6 files changed +17
-2
lines changed Expand file tree Collapse file tree 6 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 6
6
- master
7
7
- 0.1.0
8
8
- 0.2
9
+ - 0.3
9
10
- ci_check
10
11
jobs :
11
12
build-ubuntu :
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ branches:
5
5
- master
6
6
- 0.1.0
7
7
- 0.2
8
+ - 0.3
8
9
- ci_check
9
10
before_install :
10
11
- 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-05-01 version 0.3.0 (generator/QtProtobuf)
2
+
3
+ QtProtobuf
4
+ * Add static compilation for win32 platforms
5
+ * Add rpm package distribution
6
+ * Implement json serialization
7
+ * Use microjson as json deserialization library
8
+ QtGrpc
9
+ * Add static compilation for win32 platforms
10
+ generator
11
+ * Fix empty message warning for copy and move operators
12
+
1
13
2020-02-26 version 0.2.0 (generator/QtProtobuf)
2
14
3
15
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.2 .0 )
3
+ set (QT_PROTOBUF_VERSION 0.3 .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 @@ -11,6 +11,7 @@ gRPC and Protobuf generator and bindings for Qt framework
11
11
| [ 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 ) |
12
12
| [ 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 ) |
13
13
| [ 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 ) |
14
+ | [ 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 ) |
14
15
15
16
16
17
# 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.2
29
+ import QtProtobuf 0.3
30
30
import qtprotobufnamespace.tests 1.0
31
31
32
32
TestCase {
You can’t perform that action at this time.
0 commit comments