Skip to content

Commit

Permalink
chore: bump to 8.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
decaf-dev committed Apr 28, 2024
1 parent 499f0a0 commit c32320f
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
"fundingUrl": {
"Buymeacoffee": "https://www.buymeacoffee.com/treywallis"
},
"version": "8.15.13"
"version": "8.16.0"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-dataloom",
"version": "8.15.13",
"version": "8.16.0",
"description": "Weave together data from diverse sources into different views. Inspired by Excel Spreadsheets and Notion.so.",
"main": "main.js",
"scripts": {
Expand Down
6 changes: 3 additions & 3 deletions src/data/serialize-state.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,9 +318,9 @@ export const deserializeState = (
failedMigration = null;
}

const VERSION_8_15_13 = "8.15.13";
if (isVersionLessThan(fileVersion, VERSION_8_15_13)) {
failedMigration = VERSION_8_15_13;
const VERSION_8_16_0 = "8.16.0";
if (isVersionLessThan(fileVersion, VERSION_8_16_0)) {
failedMigration = VERSION_8_16_0;
const nextState = new MigrateState22().migrate(
currentState as LoomState21
);
Expand Down
2 changes: 1 addition & 1 deletion src/shared/loom-state/migrate/migrate-state-22.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { SortDir, Column } from "../types/loom-state";
import { LoomState21 } from "../types/loom-state-21";

/**
* Migrates to 8.15.13
* Migrates to 8.16.0
*/
export default class MigrateState22 implements MigrateState {
public migrate(prevState: LoomState21): LoomState {
Expand Down
12 changes: 6 additions & 6 deletions src/shared/loom-state/types/loom-state.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/******* Type definitions for v8.15.13 *******/
/******* Type definitions for v8.16.0 *******/

import { ObsidianPropertyType } from "src/shared/frontmatter/types";

/**
* v8.15.13
* v8.16.0
*/
export interface LoomState {
pluginVersion: string;
Expand Down Expand Up @@ -472,10 +472,10 @@ export interface ObsidianFrontmatterSource extends BaseSource {
propertyType: ObsidianPropertyType;
propertyKey: string;
filterCondition:
| TextFilterCondition
| NumberFilterCondition
| DateFilterCondition
| null;
| TextFilterCondition
| NumberFilterCondition
| DateFilterCondition
| null;
filterText: string;
}

Expand Down
2 changes: 1 addition & 1 deletion versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,5 @@
"8.15.10": "1.4.0",
"8.15.11": "1.4.0",
"8.15.12": "1.4.0",
"8.15.13": "1.4.0"
"8.16.0": "1.4.0"
}

0 comments on commit c32320f

Please sign in to comment.