Skip to content

Commit

Permalink
chore: bumps version
Browse files Browse the repository at this point in the history
  • Loading branch information
HoyosJuan committed Oct 10, 2024
1 parent df892cf commit 22e60a4
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@thatopen/components",
"description": "Collection of core functionalities to author BIM apps.",
"version": "2.3.1",
"version": "2.3.2",
"author": "That Open Company",
"contributors": [
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/core/Components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class Components implements Disposable {
/**
* The version of the @thatopen/components library.
*/
static readonly release = "2.3.1";
static readonly release = "2.3.2";

/** {@link Disposable.onDisposed} */
readonly onDisposed = new Event<void>();
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/openbim/BCFTopics/src/bcf-topics-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ export class BCFTopicsConfigManager extends Configurator<
protected _config: BCFTopicsConfigType = {
version: {
type: "Select" as const,
options: new Set<string>(),
options: new Set<string>(["2.1", "3"]),
multiple: false,
value: "",
},
Expand Down Expand Up @@ -168,7 +168,7 @@ export class BCFTopicsConfigManager extends Configurator<
fallbackVersionOnImport: {
type: "Select" as const,
multiple: false,
options: new Set<string>(),
options: new Set<string>(["2.1", "3"]),
value: "",
},
ignoreIncompleteTopicsOnImport: {
Expand Down
4 changes: 2 additions & 2 deletions packages/front/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@thatopen/components-front",
"description": "Collection of frontend tools to author BIM apps.",
"version": "2.3.0",
"version": "2.3.1",
"author": "That Open Company",
"contributors": [
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
Expand Down Expand Up @@ -54,4 +54,4 @@
"n8ao": "1.5.1",
"postprocessing": "6.34.2"
}
}
}

0 comments on commit 22e60a4

Please sign in to comment.