Skip to content
This repository has been archived by the owner on Aug 20, 2024. It is now read-only.

Commit

Permalink
5.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed Oct 13, 2017
1 parent db0d6ac commit 2119ea0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
env:
global:
- CONAN_REFERENCE: "Qt/5.8.0"
- CONAN_REFERENCE: "Qt/5.9.2"
- CONAN_USERNAME: "osechet"
- CONAN_CHANNEL: "stable"
- CONAN_TOTAL_PAGES: 2
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Conan package for Qt
--------------------------------------------

[![Build Status](https://travis-ci.org/osechet/conan-qt.svg?branch=stable/5.8.0)](https://travis-ci.org/osechet/conan-qt)
[![Build Status](https://travis-ci.org/osechet/conan-qt.svg?branch=stable/5.9.2)](https://travis-ci.org/osechet/conan-qt)

[![Build status](https://ci.appveyor.com/api/projects/status/gboj3x82d42eoasw/branch/release/5.8.0?svg=true)](https://ci.appveyor.com/project/osechet/conan-qt)
[![Build status](https://ci.appveyor.com/api/projects/status/gboj3x82d42eoasw/branch/release/5.9.2?svg=true)](https://ci.appveyor.com/project/osechet/conan-qt)

[ ![Download](https://api.bintray.com/packages/osechet/Conan/Qt%3Aosechet/images/download.svg?version=5.8.0%3Astable) ](https://bintray.com/osechet/Conan/Qt%3Aosechet/5.8.0%3Astable/link)
[ ![Download](https://api.bintray.com/packages/osechet/Conan/Qt%3Aosechet/images/download.svg?version=5.9.2%3Astable) ](https://bintray.com/osechet/Conan/Qt%3Aosechet/5.9.2%3Astable/link)

[Conan.io](https://conan.io) package for [Qt](https://www.qt.io) library. This package includes by default the Qt Base module (Core, Gui, Widgets, Network, ...). Others modules can be added using options.

Expand All @@ -16,7 +16,7 @@ The packages generated with this **conanfile** can be found in [bintray.com](htt
### Basic setup

```
$ conan install Qt/5.8.0@osechet/stable
$ conan install Qt/5.9.2@osechet/stable
```

### Project setup
Expand All @@ -25,7 +25,7 @@ If you handle multiple dependencies in your project is better to add a *conanfil

```
[requires]
Qt/5.8.0@osechet/stable
Qt/5.9.2@osechet/stable
[options]
Qt:shared=true # false
Expand Down Expand Up @@ -57,4 +57,4 @@ Project setup installs the library (and all his dependencies) and generates the

### Upload packages to server

$ conan upload Qt/5.8.0@osechet/stable --all
$ conan upload Qt/5.9.2@osechet/stable --all
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ environment:
PYTHON_VERSION: "2.7.8"
PYTHON_ARCH: "32"

CONAN_REFERENCE: "Qt/5.8.0"
CONAN_REFERENCE: "Qt/5.9.2"
CONAN_USERNAME: "osechet"
CONAN_CHANNEL: "stable"
VS150COMNTOOLS: "C:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\Community\\Common7\\Tools\\"
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class QtConan(ConanFile):
""" Qt Conan package """

name = "Qt"
version = "5.8.0"
version = "5.9.2"
description = "Conan.io package for Qt library."
source_dir = "qt5"
settings = "os", "arch", "compiler", "build_type"
Expand Down
2 changes: 1 addition & 1 deletion test_package/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class QtTestConan(ConanFile):
""" Qt Conan package test """

requires = "Qt/5.8.0@%s/%s" % (USERNAME, CHANNEL)
requires = "Qt/5.9.2@%s/%s" % (USERNAME, CHANNEL)
settings = "os", "compiler", "build_type", "arch"
generators = "cmake", "virtualenv"

Expand Down

0 comments on commit 2119ea0

Please sign in to comment.