Skip to content

Commit

Permalink
feat: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshinesmilelk committed Dec 22, 2024
1 parent 4212767 commit f6a52b7
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 8 deletions.
1 change: 1 addition & 0 deletions lab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"@difizen/libro-widget": "latest",
"@difizen/magent-core": "^0.1.27",
"@difizen/mana-app": "^0.1.25",
"@difizen/mana-l10n": "^0.1.25",
"@difizen/mana-react": "^0.1.27",
"@rjsf/antd": "^5.18.2",
"@rjsf/core": "^5.18.2",
Expand Down
3 changes: 2 additions & 1 deletion lab/src/pages/libro/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import './index.less';
import { LibroPromptScript } from './prompt-script.js';
import { PromptScript } from '@difizen/libro-prompt-cell';
import { LibroSchemaFormWidgetModule } from './schema-form-widget/index.js';
import { LibroConfigAppContribution } from './libro-config.js';

const BaseModule = ManaModule.create().register(LibroApp,{
const BaseModule = ManaModule.create().register(LibroApp,LibroConfigAppContribution,{
token: PromptScript,
useClass: LibroPromptScript,
lifecycle: Syringe.Lifecycle.singleton,
Expand Down
12 changes: 12 additions & 0 deletions lab/src/pages/libro/libro-config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { LibroLabConfiguration } from '@difizen/libro-lab';
import { ConfigurationService } from '@difizen/mana-app';
import { ApplicationContribution } from '@difizen/mana-app';
import { inject, singleton } from '@difizen/mana-app';

@singleton({ contrib: ApplicationContribution })
export class LibroConfigAppContribution implements ApplicationContribution {
@inject(ConfigurationService) configurationService: ConfigurationService;
onViewStart() {
this.configurationService.set(LibroLabConfiguration.LibroLabGuideViewEnabled, true);
}
}
2 changes: 1 addition & 1 deletion libro-ai/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "libro-ai"
version = "0.1.13"
version = "0.1.14"
description = "libro ai"
authors = [
{ name = "brokun", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion libro-ai/src/libro_ai/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = "0.1.13"
__version__ = "0.1.14"
2 changes: 1 addition & 1 deletion libro-server/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "libro-server"
version = "0.1.10"
version = "0.1.11"
description = "libro server"
authors = [
{ name = "zhanba", email = "[email protected]" },
Expand Down
2 changes: 1 addition & 1 deletion libro-server/src/libro_server/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = "0.1.10"
__version__ = "0.1.11"
4 changes: 2 additions & 2 deletions libro/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[project]
name = "libro"
version = "0.1.26"
version = "0.1.27"
description = "libro"
authors = [
{ name = "brokun", email = "[email protected]" },
{ name = "sunshinesmilelk", email = "[email protected]" },
{ name = "zhanba", email = "[email protected]" },
]
dependencies = ["libro-server>=0.1.10", "libro-sql>=0.1.11", "libro-ai>=0.1.13"]
dependencies = ["libro-server>=0.1.11", "libro-sql>=0.1.11", "libro-ai>=0.1.14"]
dev-dependencies = []
readme = "README.md"
requires-python = ">= 3.9"
Expand Down
2 changes: 1 addition & 1 deletion libro/src/libro/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# -*- coding: utf-8 -*-
__version__ = "0.1.26"
__version__ = "0.1.27"

0 comments on commit f6a52b7

Please sign in to comment.