Browse Source

Version 0.3.0

Alexey Edelev 4 years ago
parent
commit
784680fa72
6 changed files with 17 additions and 2 deletions
  1. 1 0
      .github/workflows/branchpush.yml
  2. 1 0
      .travis.yml
  3. 12 0
      CHANGES.txt
  4. 1 1
      CMakeLists.txt
  5. 1 0
      README.md
  6. 1 1
      tests/test_qml/qml/tst_simple.qml

+ 1 - 0
.github/workflows/branchpush.yml

@@ -6,6 +6,7 @@ on:
      - master
      - 0.1.0
      - 0.2
+     - 0.3
      - ci_check
 jobs:
   build-ubuntu:

+ 1 - 0
.travis.yml

@@ -5,6 +5,7 @@ branches:
   - master
   - 0.1.0
   - 0.2
+  - 0.3
   - ci_check
 before_install:
   - wget -q https://download.qt.io/official_releases/qt/5.13/5.13.2/qt-opensource-windows-x86-5.13.2.exe

+ 12 - 0
CHANGES.txt

@@ -1,3 +1,15 @@
+2020-05-01 version 0.3.0 (generator/QtProtobuf)
+
+    QtProtobuf
+    * Add static compilation for win32 platforms
+    * Add rpm package distribution
+    * Implement json serialization
+    * Use microjson as json deserialization library
+    QtGrpc
+    * Add static compilation for win32 platforms
+    generator
+    * Fix empty message warning for copy and move operators
+    
 2020-02-26 version 0.2.0 (generator/QtProtobuf)
 
     QtProtobuf

+ 1 - 1
CMakeLists.txt

@@ -1,6 +1,6 @@
 cmake_minimum_required(VERSION 3.6)
 
-set(QT_PROTOBUF_VERSION 0.2.0)
+set(QT_PROTOBUF_VERSION 0.3.0)
 set(QT_PROTOBUF_PROJECT QtProtobufProject)
 
 project(${QT_PROTOBUF_PROJECT} VERSION ${QT_PROTOBUF_VERSION} LANGUAGES CXX)

+ 1 - 0
README.md

@@ -11,6 +11,7 @@ gRPC and Protobuf generator and bindings for Qt framework
 | [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) |
 | [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) |
 | [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) |
+| [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) |
 
 
 # Table of contents

+ 1 - 1
tests/test_qml/qml/tst_simple.qml

@@ -26,7 +26,7 @@
 import QtQuick 2.12
 import QtTest 1.0
 
-import QtProtobuf 0.2
+import QtProtobuf 0.3
 import qtprotobufnamespace.tests 1.0
 
 TestCase {