From 5129e94aecc7379c5beba2c19ef447ba49ac17df Mon Sep 17 00:00:00 2001 From: shaileshj2803 Date: Mon, 29 Sep 2025 19:31:18 -0700 Subject: [PATCH] Release v0.2.0: Change license to MIT --- CHANGELOG.md | 12 ++++++++++++ LICENSE | 2 +- README.md | 2 +- contextgraph/__init__.py | 2 +- pyproject.toml | 1 - setup.py | 4 +++- 6 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1eb1e4f..fb4bdae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2024-12-XX + +### Changed +- **BREAKING**: License changed from Apache 2.0 to MIT License +- This is a minor version bump due to the significant license change + +## [0.1.2] - 2024-12-XX + +### Changed +- Updated to MIT License for better compatibility +- Fixed packaging and version management + ## [0.1.0] - 2024-12-XX ### Added diff --git a/LICENSE b/LICENSE index dd9392f..963fcee 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Shailesh Jannu. +Copyright (c) 2024 Shailesh Jannu Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index a291b1b..3316427 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![PyPI version](https://badge.fury.io/py/contextgraph.svg)](https://badge.fury.io/py/contextgraph) [![Python Support](https://img.shields.io/pypi/pyversions/contextgraph.svg)](https://pypi.org/project/contextgraph/) -[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) +[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Tests](https://github.com/yourusername/contextgraph/workflows/Tests/badge.svg)](https://github.com/yourusername/contextgraph/actions) A powerful graph database with [Cypher](https://neo4j.com/developer/cypher/) query support and advanced visualization capabilities, built on [igraph](https://igraph.org/). diff --git a/contextgraph/__init__.py b/contextgraph/__init__.py index 36d1df2..0384f8a 100644 --- a/contextgraph/__init__.py +++ b/contextgraph/__init__.py @@ -18,7 +18,7 @@ SchemaError, ) -__version__ = "0.1.0" +__version__ = "0.2.0" __all__ = [ "GraphDB", "CypherParser", diff --git a/pyproject.toml b/pyproject.toml index 88f9c24..be36741 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,4 +1,3 @@ -license = { file = "LICENSE" } [build-system] requires = ["setuptools>=45", "wheel"] build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py index 5265314..cbce76b 100644 --- a/setup.py +++ b/setup.py @@ -24,18 +24,20 @@ def read_requirements(): setup( name="contextgraph", - version="0.1.2", + version="0.2.0", author="Shailesh Jannu", # Replace with your name author_email="shaileshj@gmail.com", # Replace with your email description="A powerful graph database with Cypher query support and advanced visualization capabilities", long_description=read_readme(), long_description_content_type="text/markdown", url="https://github.com/shaileshj2803/contextgraph", + license="MIT", packages=find_packages(exclude=["tests", "tests.*"]), classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Science/Research", + "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8",