Skip to content

Commit ffa36ad

Browse files
Version 0.8 (#151)
* rel : migrate to version 0.8 * rel : CHANGELOG.md updated
1 parent abeda1f commit ffa36ad

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ body:
8585
label: Memor version
8686
description: Which version of Memor are you using?
8787
options:
88+
- Memor 0.8
8889
- Memor 0.7
8990
- Memor 0.6
9091
- Memor 0.5

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [0.8] - 2025-07-21
89
### Added
910
- Logo
1011
- `Response` class `top_k` property
@@ -120,7 +121,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
120121
- `PresetPromptTemplate` class
121122

122123

123-
[Unreleased]: https://github.com/openscilab/memor/compare/v0.7...dev
124+
[Unreleased]: https://github.com/openscilab/memor/compare/v0.8...dev
125+
[0.8]: https://github.com/openscilab/memor/compare/v0.7...v0.8
124126
[0.7]: https://github.com/openscilab/memor/compare/v0.6...v0.7
125127
[0.6]: https://github.com/openscilab/memor/compare/v0.5...v0.6
126128
[0.5]: https://github.com/openscilab/memor/compare/v0.4...v0.5

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ By bridging the gap between isolated LLM instances, Memor revolutionizes the way
6969

7070
### PyPI
7171
- Check [Python Packaging User Guide](https://packaging.python.org/installing/)
72-
- Run `pip install memor==0.7`
72+
- Run `pip install memor==0.8`
7373
### Source code
74-
- Download [Version 0.7](https://github.com/openscilab/memor/archive/v0.7.zip) or [Latest Source](https://github.com/openscilab/memor/archive/dev.zip)
74+
- Download [Version 0.8](https://github.com/openscilab/memor/archive/v0.8.zip) or [Latest Source](https://github.com/openscilab/memor/archive/dev.zip)
7575
- Run `pip install .`
7676

7777
## Usage

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
| ------------- | ------------------ |
7-
| 0.7 | :white_check_mark: |
8-
| < 0.7 | :x: |
7+
| 0.8 | :white_check_mark: |
8+
| < 0.8 | :x: |
99

1010
## Reporting a vulnerability
1111

memor/params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""Memor parameters and constants."""
33
from enum import Enum
4-
MEMOR_VERSION = "0.7"
4+
MEMOR_VERSION = "0.8"
55

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

otherfiles/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% set name = "memor" %}
2-
{% set version = "0.7" %}
2+
{% set version = "0.8" %}
33

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

otherfiles/version_check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import codecs
66
Failed = 0
7-
MEMOR_VERSION = "0.7"
7+
MEMOR_VERSION = "0.8"
88

99

1010
SETUP_ITEMS = [

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ def read_description() -> str:
3434
name='memor',
3535
packages=[
3636
'memor', ],
37-
version='0.7',
37+
version='0.8',
3838
description='Memor: A Python Library for Managing and Transferring Conversational Memory Across LLMs',
3939
long_description=read_description(),
4040
long_description_content_type='text/markdown',
4141
author='Memor Development Team',
4242
author_email='[email protected]',
4343
url='https://github.com/openscilab/memor',
44-
download_url='https://github.com/openscilab/memor/tarball/v0.7',
44+
download_url='https://github.com/openscilab/memor/tarball/v0.8',
4545
keywords="llm memory management conversational history ai agent",
4646
project_urls={
4747
'Source': 'https://github.com/openscilab/memor',

0 commit comments

Comments
 (0)