Skip to content

Commit ebb0fbb

Browse files
chore: bump version to 1.0.4
Includes: - Bug fix for 8-K date_of_report parsing (PR #28) - Bug fix for press_releases iteration - Documentation: Added Contributors section with badges - Code formatting improvements
1 parent 3ca2ef5 commit ebb0fbb

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

conda/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "sec-edgar-mcp" %}
2-
{% set version = environ.get('GIT_DESCRIBE_TAG', '1.0.3').lstrip('v') %}
2+
{% set version = environ.get('GIT_DESCRIBE_TAG', '1.0.4').lstrip('v') %}
33

44
package:
55
name: {{ name|lower }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "sec-edgar-mcp"
7-
version = "1.0.3"
7+
version = "1.0.4"
88
description = "SEC EDGAR MCP server for company filings and financial data"
99
authors = [{ name = "Stefano Amorelli", email = "stefano@amorelli.tech" }]
1010
readme = "README.md"

sec_edgar_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from sec_edgar_mcp.tools import CompanyTools, FilingsTools, FinancialTools, InsiderTools
33
from sec_edgar_mcp.utils import TickerCache, SEC_USER_AGENT
44

5-
__version__ = "1.0.3"
5+
__version__ = "1.0.4"
66

77
__all__ = [
88
# Core

0 commit comments

Comments
 (0)