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
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ body:
label: Memor version
description: Which version of Memor are you using?
options:
- Memor 1.0
- Memor 0.9
- Memor 0.8
- Memor 0.7
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.0] - 2025-11-17
### Added
- `Response` class `xml_tree` property
- `Prompt` class `xml_tree` property
Expand Down Expand Up @@ -150,7 +151,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- `PresetPromptTemplate` class


[Unreleased]: https://github.com/openscilab/memor/compare/v0.9...dev
[Unreleased]: https://github.com/openscilab/memor/compare/v1.0...dev
[1.0]: https://github.com/openscilab/memor/compare/v0.9...v1.0
[0.9]: https://github.com/openscilab/memor/compare/v0.8...v0.9
[0.8]: https://github.com/openscilab/memor/compare/v0.7...v0.8
[0.7]: https://github.com/openscilab/memor/compare/v0.6...v0.7
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ In a nutshell, Memor makes it easy and effective to manage and reuse conversatio

### PyPI
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
- Run `pip install memor==0.9`
- Run `pip install memor==1.0`
### Source code
- Download [Version 0.9](https://github.com/openscilab/memor/archive/v0.9.zip) or [Latest Source](https://github.com/openscilab/memor/archive/dev.zip)
- Download [Version 1.0](https://github.com/openscilab/memor/archive/v1.0.zip) or [Latest Source](https://github.com/openscilab/memor/archive/dev.zip)
- Run `pip install .`

## Usage
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

| Version | Supported |
| ------------- | ------------------ |
| 0.9 | :white_check_mark: |
| < 0.9 | :x: |
| 1.0 | :white_check_mark: |
| < 1.0 | :x: |

## Reporting a vulnerability

Expand Down
2 changes: 1 addition & 1 deletion memor/params.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
"""Memor parameters and constants."""
from enum import Enum
MEMOR_VERSION = "0.9"
MEMOR_VERSION = "1.0"

DATE_TIME_FORMAT = "%Y-%m-%d %H:%M:%S %z"

Expand Down
3 changes: 2 additions & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "memor" %}
{% set version = "0.9" %}
{% set version = "1.0" %}

package:
name: {{ name|lower }}
Expand All @@ -18,6 +18,7 @@ requirements:
- python >=3.7
run:
- python >=3.7
- defusedxml >=0.7.1
about:
home: https://github.com/openscilab/memor
license: MIT
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
MEMOR_VERSION = "0.9"
MEMOR_VERSION = "1.0"


SETUP_ITEMS = [
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ def read_description() -> str:
name='memor',
packages=[
'memor', ],
version='0.9',
version='1.0',
description='Memor: Reproducible Structured Memory for LLMs',
long_description=read_description(),
long_description_content_type='text/markdown',
author='Memor Development Team',
author_email='memor@openscilab.com',
url='https://github.com/openscilab/memor',
download_url='https://github.com/openscilab/memor/tarball/v0.9',
download_url='https://github.com/openscilab/memor/tarball/v1.0',
keywords="llm memory management conversational history ai agent",
project_urls={
'Source': 'https://github.com/openscilab/memor',
Expand Down