|
| 1 | +# Changelog |
| 2 | + |
| 3 | +All notable changes to the Decomp project will be documented in this file. |
| 4 | + |
| 5 | +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), |
| 6 | +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). |
| 7 | + |
| 8 | +## [0.3.0] - 2025-07-30 |
| 9 | + |
| 10 | +### Added |
| 11 | +- **New PredPatt Integration**: Complete integration of PredPatt semantic role labeling functionality into `decomp.semantics.predpatt` module |
| 12 | +- **Modern Python Support**: Full Python 3.12+ compatibility with updated type hints using union syntax (`|`) and built-in generics |
| 13 | +- **Modern Packaging**: Migration from `setup.py` to `pyproject.toml` with modern build system |
| 14 | + |
| 15 | +### Changed |
| 16 | +- **Type System Modernization**: All type hints updated to Python 3.12+ conventions using `|` union syntax and built-in generics |
| 17 | +- **Documentation**: Comprehensive documentation overhaul with detailed API references and usage examples |
| 18 | +- **Code Quality**: Implementation of ruff and mypy for consistent code formatting and static type checking |
| 19 | +- **Test Suite**: Complete pytest-based test suite with differential testing against original PredPatt implementation |
| 20 | + |
| 21 | +### Technical Details |
| 22 | +- **Module Structure**: New modular architecture with `core`, `extraction`, `parsing`, `rules`, `filters`, and `utils` submodules |
| 23 | +- **Algorithm Fidelity**: Byte-for-byte identical output compatibility with original PredPatt implementation |
| 24 | +- **Dependencies**: Updated to modern versions while maintaining backward compatibility |
| 25 | + |
| 26 | +## [0.2.2] - 2022-06-08 |
| 27 | + |
| 28 | +### Fixed |
| 29 | +- **Corpus Loading**: Fixed broken corpus load from JSON functionality |
| 30 | +- **UDS Annotations**: Corrected error in raw UDS-EventStructure annotations processing |
| 31 | + |
| 32 | +### Notes |
| 33 | +- Final release of v0.2.x series before major modernization |
| 34 | +- Maintained compatibility with Universal Decompositional Semantics v2.0 dataset |
| 35 | + |
| 36 | +## [0.2.1] - 2021-04-05 |
| 37 | + |
| 38 | +### Fixed |
| 39 | +- **Python 3.9 Compatibility**: Resolved compatibility issues with Python 3.9 |
| 40 | +- **Dependency Updates**: Updated dependencies to support newer Python versions |
| 41 | + |
| 42 | +### Notes |
| 43 | +- Part of Universal Decompositional Semantics v2.0 release series |
| 44 | +- Improved cross-platform compatibility |
| 45 | + |
| 46 | +## [0.2.0] - 2021-03-19 |
| 47 | + |
| 48 | +### Added |
| 49 | +- **Universal Decompositional Semantics v2.0**: First release supporting UDS 2.0 dataset |
| 50 | +- **Document-Level Graphs**: Support for document-level semantic graph structures |
| 51 | +- **Raw Annotations**: Access to raw annotation data alongside normalized annotations |
| 52 | +- **Advanced Metadata**: Enhanced metadata handling and processing capabilities |
| 53 | +- **Visualization Module**: New `decomp.vis` module for graph visualization and analysis |
| 54 | +- **Enhanced Graph Support**: Improved NetworkX and RDF graph representations |
| 55 | + |
| 56 | +### Changed |
| 57 | +- **Major Version Bump**: Significant architectural changes to support UDS v2.0 |
| 58 | +- **API Enhancements**: Extended API surface for document-level processing |
| 59 | +- **Data Format**: Support for both sentence-level and document-level annotation formats |
| 60 | + |
| 61 | +### Technical Details |
| 62 | +- **Graph Structures**: Support for complex document-level semantic relationships |
| 63 | +- **Annotation Pipeline**: Enhanced pipeline for processing raw and normalized annotations |
| 64 | +- **Metadata Schema**: Advanced metadata schema for annotation provenance and confidence |
| 65 | + |
| 66 | +## [0.1.3] - 2020-03-13 |
| 67 | + |
| 68 | +### Fixed |
| 69 | +- **RDF Cache**: Fixed RDF cache clearing error that could cause memory issues |
| 70 | +- **Document Attributes**: Added missing document and sentence ID attributes for better tracking |
| 71 | + |
| 72 | +### Added |
| 73 | +- **Improved Tracking**: Better document and sentence identification in corpus processing |
| 74 | + |
| 75 | +### Notes |
| 76 | +- Maintenance release improving stability and debugging capabilities |
| 77 | +- Enhanced corpus navigation and identification features |
| 78 | + |
| 79 | +## [0.1.2] - 2020-01-17 |
| 80 | + |
| 81 | +### Fixed |
| 82 | +- **Corpus Construction**: Fixed corpus construction error when using split parameter |
| 83 | +- **Data Splitting**: Resolved issues with train/dev/test split functionality |
| 84 | + |
| 85 | +### Technical Details |
| 86 | +- **Split Parameters**: Corrected handling of data split parameters in corpus initialization |
| 87 | +- **Error Handling**: Improved error messages for corpus construction failures |
| 88 | + |
| 89 | +## [0.1.1] - 2019-10-19 |
| 90 | + |
| 91 | +### Fixed |
| 92 | +- **Genericity Annotations**: Fixed copular clause argument linking error in genericity annotations |
| 93 | +- **Argument Linking**: Corrected semantic role assignment for copular constructions |
| 94 | + |
| 95 | +### Technical Details |
| 96 | +- **Linguistic Accuracy**: Improved handling of copular clause structures in semantic annotation |
| 97 | +- **Annotation Quality**: Enhanced accuracy of genericity property assignments |
| 98 | + |
| 99 | +## [0.1.0] - 2019-10-01 |
| 100 | + |
| 101 | +### Added |
| 102 | +- **Initial Release**: First major release of the Decomp toolkit |
| 103 | +- **Universal Decompositional Semantics v1.0**: Complete support for UDS v1.0 dataset |
| 104 | +- **Core Framework**: Foundation classes for semantic graph processing |
| 105 | +- **Syntax Integration**: Universal Dependencies syntax integration |
| 106 | +- **Semantic Properties**: Support for multiple semantic annotation types: |
| 107 | + - Genericity annotations |
| 108 | + - Factuality annotations |
| 109 | + - Protorole annotations |
| 110 | + - Temporal annotations |
| 111 | + - Word sense annotations |
| 112 | +- **Graph Representations**: NetworkX and RDF graph format support |
| 113 | +- **Corpus Management**: Tools for loading, processing, and managing UDS corpora |
| 114 | +- **Documentation**: Comprehensive documentation and API reference |
| 115 | + |
| 116 | +### Technical Foundation |
| 117 | +- **Graph Infrastructure**: Core graph processing and manipulation capabilities |
| 118 | +- **Annotation Framework**: Flexible annotation loading and processing system |
| 119 | +- **Type System**: Initial type definitions for semantic structures |
| 120 | +- **Testing Framework**: Basic test suite for core functionality |
| 121 | + |
| 122 | +--- |
| 123 | + |
| 124 | +## Release Notes |
| 125 | + |
| 126 | +### Dataset Compatibility |
| 127 | +- **v0.1.x**: Universal Decompositional Semantics v1.0 |
| 128 | +- **v0.2.x**: Universal Decompositional Semantics v2.0 |
| 129 | +- **v0.3.x**: Universal Decompositional Semantics v2.0 + PredPatt integration |
| 130 | + |
| 131 | +### Python Version Support |
| 132 | +- **v0.1.x - v0.2.x**: Python 3.6+ |
| 133 | +- **v0.3.x**: Python 3.12+ (modern type hints and language features) |
| 134 | + |
| 135 | +### Breaking Changes |
| 136 | +- **v0.2.0**: API changes for document-level graph support |
| 137 | +- **v0.3.0**: Modernized type system, requires Python 3.12+, integrated PredPatt functionality |
| 138 | + |
| 139 | +For detailed technical documentation, see the [Decomp Documentation](https://decomp.readthedocs.io/en/latest/). |
| 140 | +For issues and support, visit the [GitHub Repository](https://github.com/decompositional-semantics-initiative/decomp). |
0 commit comments