Skip to content

Commit

Permalink
Merge branch 'major-release' of 'https://github.com/sduenas/perceval'
Browse files Browse the repository at this point in the history
Merges #839 
Closes #839
  • Loading branch information
jjmerchante authored Apr 9, 2024
2 parents cdaae66 + af83d71 commit f0a8fac
Show file tree
Hide file tree
Showing 36 changed files with 44 additions and 35 deletions.
2 changes: 1 addition & 1 deletion perceval/backends/core/askbot.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class Askbot(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.8.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_QUESTION]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/bugzilla.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Bugzilla(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.12.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_BUG]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/bugzillarest.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class BugzillaREST(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.12.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_BUG]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/confluence.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class Confluence(Backend):
optional for Confluence Data Center and server editions 7.9 and later
:param api_token: Confluence user's personal access token or api token
"""
version = '0.15.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_HISTORICAL_CONTENT]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/discourse.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ class Discourse(Backend):
of connection problems
:param ssl_verify: enable/disable SSL verification
"""
version = '0.13.1'
version = '1.0.0'

CATEGORIES = [CATEGORY_TOPIC]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/dockerhub.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class DockerHub(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.6.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_DOCKERHUB_DATA]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/gerrit.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Gerrit(Backend):
:param blacklist_ids: exclude the reviews while fetching
:param id_filepath: path to SSH private key
"""
version = '0.13.1'
version = '1.0.0'

CATEGORIES = [CATEGORY_REVIEW]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/git.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class Git(Backend):
:raises RepositoryError: raised when there was an error cloning or
updating the repository.
"""
version = '0.13.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_COMMIT]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/github.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class GitHub(Backend):
of connection problems
:param ssl_verify: enable/disable SSL verification
"""
version = '0.27.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_ISSUE, CATEGORY_PULL_REQUEST, CATEGORY_REPO]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/githubql.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ class GitHubQL(GitHub):
of connection problems
:param ssl_verify: enable/disable SSL verification
"""
version = '0.4.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_EVENT]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/gitlab.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class GitLab(Backend):
the ones (413, 429, 503) defined in the HttpClient class
:param ssl_verify: enable/disable SSL verification
"""
version = '0.12.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_ISSUE, CATEGORY_MERGE_REQUEST]
ORIGIN_UNIQUE_FIELD = OriginUniqueField(name='iid', type=int)
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/gitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Gitter(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.1.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/googlehits.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class GoogleHits(Backend):
of connection problems
:param ssl_verify: enable/disable SSL verification
"""
version = '0.4.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_HITS]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/groupsio.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class Groupsio(MBox):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.4.2'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/hyperkitty.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class HyperKitty(MBox):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.7.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/jenkins.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Jenkins(Backend):
:param blacklist_ids: exclude the jobs ID of this list while fetching
:param ssl_verify: enable/disable SSL verification
"""
version = '0.16.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_BUILD]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/jira.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class Jira(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.15.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_ISSUE]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/launchpad.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class Launchpad(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.8.1'
version = '1.0.0'

CATEGORIES = [CATEGORY_ISSUE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/mattermost.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Mattermost(Backend):
of connection problems
:param ssl_verify: enable/disable SSL verification
"""
version = '0.5.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_POST]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/mbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class MBox(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.13.2'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/mediawiki.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class MediaWiki(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.11.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_PAGE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/meetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class Meetup(Backend):
of connection problems
:param ssl_verify: enable/disable SSL verification
"""
version = '0.17.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_EVENT]
CLASSIFIED_FIELDS = [
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/nntp.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class NNTP(Backend):
:param tag: label used to mark the data
:param archive: archive to store/retrieve items
"""
version = '0.6.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_ARTICLE]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/pagure.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Pagure(Backend):
of connection problems
:param ssl_verify: enable/disable SSL verification
"""
version = '0.1.2'
version = '1.0.0'

CATEGORIES = [CATEGORY_ISSUE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/phabricator.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Phabricator(Backend):
:param ssl_verify: enable/disable SSL verification
:param blacklist_ids: exclude the ids while fetching
"""
version = '0.14.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_TASK]
ORIGIN_UNIQUE_FIELD = OriginUniqueField(name='id', type=int)
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/pipermail.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class Pipermail(MBox):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.11.1'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/redmine.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Redmine(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.11.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_ISSUE]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/rocketchat.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class RocketChat(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.1.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/rss.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class RSS(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.7.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_ENTRY]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/slack.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Slack(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.10.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/stackexchange.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class StackExchange(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.12.1'
version = '1.0.0'

CATEGORIES = [CATEGORY_QUESTION]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/supybot.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class Supybot(Backend):
:param tag: label used to mark the data
:param archive: archive to store/retrieve items
"""
version = '0.10.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]

Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/telegram.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Telegram(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.11.1'
version = '1.0.0'

CATEGORIES = [CATEGORY_MESSAGE]
EXTRA_SEARCH_FIELDS = {
Expand Down
2 changes: 1 addition & 1 deletion perceval/backends/core/twitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class Twitter(Backend):
:param archive: archive to store/retrieve items
:param ssl_verify: enable/disable SSL verification
"""
version = '0.4.0'
version = '1.0.0'

CATEGORIES = [CATEGORY_TWEET]

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ include = [
]

classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Software Development",
Expand Down
9 changes: 9 additions & 0 deletions releases/unreleased/first-major-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: First major release
category: added
author: Santiago Dueñas <[email protected]>
issue: null
notes: >
GrimoireLab reached a stable status. This is our
first major release.

0 comments on commit f0a8fac

Please sign in to comment.