Skip to content

Commit

Permalink
Bump to version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Sep 24, 2023
1 parent 93c94ff commit 778ecec
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 30 deletions.
11 changes: 6 additions & 5 deletions processing_saga_nextgen/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

[general]
name=Processing Saga NextGen Provider
qgisMinimumVersion=3.4
description=A Processing provider for SAGA 7.2
version=0.0.7
qgisMinimumVersion=3.22
description=A Processing provider for SAGA 9.1
version=1.0.0
author=North Road
[email protected]

about=Processing provider for SAGA 7.2. Requires manual installation of SAGA 7.2 binaries.
about=Processing provider for SAGA 9.1. Requires manual installation of SAGA 9.1 binaries.

tracker=https://github.com/north-road/qgis-processing-saga-nextgen/issues
repository=https://github.com/north-road/qgis-processing-saga-nextgen
Expand All @@ -23,7 +23,8 @@ repository=https://github.com/north-road/qgis-processing-saga-nextgen
# Recommended items:

# Uncomment the following line and add your changelog:
changelog=0.0.7 Fix compatibility with QGIS 3.22
changelog=1.0.0 Target SAGA 9.1+. Allow running with older SAGA, but show warnings.
0.0.7 Fix compatibility with QGIS 3.22
0.0.6 Synchronise description files with newer Windows installer versions
0.0.5 Fix exception when loading on Macos
0.0.4 Be more forgiving for different SAGA versions... because hey, this whole plugin is "use at your own risk!"
Expand Down
27 changes: 2 additions & 25 deletions processing_saga_nextgen/processing/provider.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,7 @@
# -*- coding: utf-8 -*-

"""
***************************************************************************
provider.py
---------------------
Date : August 2012
Copyright : (C) 2012 by Victor Olaya
Email : volayaf at gmail dot com
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
Processing provider for SAGA
"""

__author__ = 'Victor Olaya'
__date__ = 'August 2012'
__copyright__ = '(C) 2012, Victor Olaya'

# This will get replaced with a git SHA1 when you do a git archive

__revision__ = '$Format:%H$'

import os

from processing.core.ProcessingConfig import ProcessingConfig, Setting
Expand Down Expand Up @@ -130,7 +107,7 @@ def versionInfo(self):
"""
Provider plugin version
"""
return "0.0.7"
return "1.0.0"

def defaultVectorFileExtension(self, hasGeometry=True):
"""
Expand Down

0 comments on commit 778ecec

Please sign in to comment.