Skip to content

Commit 6a56ad8

Browse files
committed
Bump version: 0.6.1 -> 0.7.0
1 parent 3675d3f commit 6a56ad8

14 files changed

Lines changed: 14 additions & 14 deletions

File tree

.bumpversion.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumpversion]
2-
current_version = "0.6.1"
2+
current_version = "0.7.0"
33
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
44
serialize = ["{major}.{minor}.{patch}"]
55
search = "{current_version}"

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors:
44
- family-names: "Kartas"
55
given-names: "Kyriakos"
66
title: "ApiLinker: A Universal Bridge for REST API Integrations"
7-
version: 0.6.1
7+
version: 0.7.0
88
date-released: 2025-01-20
99
url: "https://github.com/kkartas/apilinker"
1010
repository-code: "https://github.com/kkartas/apilinker"

ROADMAP.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This document tracks planned features, enhancements, and improvements for ApiLinker. Features are organized by version and priority.
44

5-
**Current Version:** 0.6.1
5+
**Current Version:** 0.7.0
66
**Last Updated:** 2025-11-27
77

88
## Version Strategy

TECHNICAL_DOCUMENTATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ApiLinker Technical Documentation
22

3-
**Version 0.6.1** | **For Python Developers** | **Internal Architecture Reference**
3+
**Version 0.7.0** | **For Python Developers** | **Internal Architecture Reference**
44

55
This document provides comprehensive technical documentation for Python developers working with or contributing to ApiLinker. It covers internal architecture, extension points, design patterns, and implementation details.
66

apilinker/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
NCBI (PubMed, GenBank) and arXiv connectors.
1111
"""
1212

13-
__version__ = "0.6.1"
13+
__version__ = "0.7.0"
1414

1515
# Core components
1616
from apilinker.core.connector import ApiConnector

apilinker/connectors/general/github.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __init__(self, token: Optional[str] = None, **kwargs):
3737
# Set up headers
3838
headers = {
3939
"Accept": "application/vnd.github+json",
40-
"User-Agent": "ApiLinker/0.6.1",
40+
"User-Agent": "ApiLinker/0.7.0",
4141
"X-GitHub-Api-Version": "2022-11-28",
4242
}
4343

apilinker/connectors/scientific/crossref.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def __init__(self, email: str, **kwargs):
3434
base_url = "https://api.crossref.org"
3535

3636
# Set up headers for polite pool access
37-
headers = {"User-Agent": f"ApiLinker/0.6.1 (mailto:{email})"}
37+
headers = {"User-Agent": f"ApiLinker/0.7.0 (mailto:{email})"}
3838

3939
# Define CrossRef endpoints
4040
endpoints = {

apilinker/connectors/scientific/orcid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, access_token: Optional[str] = None, **kwargs):
3535
base_url = "https://pub.orcid.org/v3.0"
3636

3737
# Set up headers
38-
headers = {"Accept": "application/json", "User-Agent": "ApiLinker/0.6.1"}
38+
headers = {"Accept": "application/json", "User-Agent": "ApiLinker/0.7.0"}
3939

4040
if access_token:
4141
headers["Authorization"] = f"Bearer {access_token}"

apilinker/connectors/scientific/semantic_scholar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def __init__(self, api_key: Optional[str] = None, **kwargs):
3535
base_url = "https://api.semanticscholar.org/graph/v1"
3636

3737
# Set up headers
38-
headers = {"User-Agent": "ApiLinker/0.6.1"}
38+
headers = {"User-Agent": "ApiLinker/0.7.0"}
3939
if api_key:
4040
headers["x-api-key"] = api_key
4141

apilinker/core/plugins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_plugin_info(cls) -> Dict[str, Any]:
8181
"type": cls.plugin_type,
8282
"name": cls.plugin_name,
8383
"description": cls.__doc__,
84-
"version": getattr(cls, "version", "0.6.1"),
84+
"version": getattr(cls, "version", "0.7.0"),
8585
"author": getattr(cls, "author", "Unknown"),
8686
}
8787

0 commit comments

Comments
 (0)