diff --git a/appveyor.yml b/appveyor.yml index 759bd5334bc5e394199a72617b1dd251a14733dd..d70fe3e96ffdb422914feba71b22360ea79a0160 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -32,8 +32,8 @@ build_script: bash "git clone C:/projects/gajim C:/msys64/home/appveyor/gajim" bash "C:/msys64/home/appveyor/gajim/win/build.sh $($env:MSYS_ARCH)" - Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim.exe" -FileName "Gajim-1.1.0-$($env:ARCH)-$($env:TIME_STRING).exe" - Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.1.0-$($env:ARCH)-$($env:TIME_STRING).exe" + Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim.exe" -FileName "Gajim-1.1.1-$($env:ARCH)-$($env:TIME_STRING).exe" + Push-AppveyorArtifact "$($env:BUILDROOT)/Gajim-Portable.exe" -FileName "Gajim-Portable-1.1.1-$($env:ARCH)-$($env:TIME_STRING).exe" # on_finish: # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) diff --git a/data/org.gajim.Gajim.appdata.xml.in b/data/org.gajim.Gajim.appdata.xml.in index 0f738a22417dfbedd5fcf83e46f0142fc98fae02..cfccbd9dbe71794c903b1bf9518e4a966ba2bc90 100644 --- a/data/org.gajim.Gajim.appdata.xml.in +++ b/data/org.gajim.Gajim.appdata.xml.in @@ -101,6 +101,7 @@ <content_attribute id="money-gambling">none</content_attribute> </content_rating> <releases> + <release version="1.1.1" date="2018-12-23" /> <release version="1.1.0" date="2018-11-06" /> <release version="1.0.3" date="2018-05-20" /> <release version="1.0.2" date="2018-04-30" /> diff --git a/gajim/__init__.py b/gajim/__init__.py index f55363d433a639e242e7aec5e1e22436aa7c2897..b8be88c247f3eb79284099f4f837752801d13f27 100644 --- a/gajim/__init__.py +++ b/gajim/__init__.py @@ -1,7 +1,7 @@ import os import subprocess -__version__ = "1.1.0" +__version__ = "1.1.1" IS_FLATPAK = False if os.path.exists('/app/share/run-as-flatpak'):