Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).
Expand Down
2 changes: 1 addition & 1 deletion contextgraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
SchemaError,
)

__version__ = "0.1.0"
__version__ = "0.2.0"
__all__ = [
"GraphDB",
"CypherParser",
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
license = { file = "LICENSE" }
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading