Skip to content

Commit

Permalink
Prep for 1.0.0-beta.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bencroker committed Feb 1, 2025
1 parent d7b527f commit 7013702
Show file tree
Hide file tree
Showing 18 changed files with 41 additions and 40 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0-beta.2
1.0.0-beta.3
16 changes: 8 additions & 8 deletions bundles/datastar-aliased.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions bundles/datastar-aliased.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions bundles/datastar-core.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions bundles/datastar-core.js.map

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions bundles/datastar.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions bundles/datastar.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@starfederation/datastar",
"author": "Delaney Gillilan",
"description": "The hypermedia framework.",
"version": "1.0.0-beta.2",
"version": "1.0.0-beta.3",
"license": "MIT",
"private": false,
"homepage": "https://data-star.dev",
Expand Down
3 changes: 2 additions & 1 deletion library/src/engine/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { kebabize } from '../utils/text'
import { DATASTAR } from './consts'
import { type InitContext, PluginType, type RuntimeContext } from './types'

const url = `${window.location.origin}/errors`
const url = 'https://data-star.dev/errors'
//const url = `${window.location.origin}/errors`

interface Metadata {
error?: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@


(def datastar-key "datastar")
(def version "1.0.0-beta.2")
(def version "1.0.0-beta.3")


;; -----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion sdk/dotnet/src/Consts.fs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions sdk/go/consts.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
public final class Consts {
public static final String DATASTAR_KEY = "datastar";
public static final String VERSION = "1.0.0-beta.2";
public static final String VERSION = "1.0.0-beta.3";

// The default duration for settling during fragment merges. Allows for CSS transitions to complete.
public static final int DEFAULT_FRAGMENTS_SETTLE_DURATION = 300;
Expand Down
2 changes: 1 addition & 1 deletion sdk/php/src/Consts.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class Consts
{
public const DATASTAR_KEY = 'datastar';
public const VERSION = '1.0.0-beta.2';
public const VERSION = '1.0.0-beta.3';

// The default duration for settling during fragment merges. Allows for CSS transitions to complete.
public const DEFAULT_FRAGMENTS_SETTLE_DURATION = 300;
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/src/datastar_py/consts.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class EventType(StrEnum):
#endregion Enums

DATASTAR_KEY = "datastar"
VERSION = "1.0.0-beta.2"
VERSION = "1.0.0-beta.3"

#region Default durations

Expand Down
2 changes: 1 addition & 1 deletion sdk/rust/src/consts.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This is auto-generated by Datastar. DO NOT EDIT.

pub const DATASTAR_KEY: &str = "datastar";
pub const VERSION: &str = "1.0.0-beta.2";
pub const VERSION: &str = "1.0.0-beta.3";

// #region Defaults

Expand Down
2 changes: 1 addition & 1 deletion sdk/typescript/src/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

export const DATASTAR = "datastar" as const;
export const DATASTAR_REQUEST = "Datastar-Request";
export const VERSION = "1.0.0-beta.2";
export const VERSION = "1.0.0-beta.3";

// #region Defaults

Expand Down
2 changes: 1 addition & 1 deletion sdk/zig/src/consts.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
const std = @import("std");

pub const datastar_key = "datastar";
pub const version = "1.0.0-beta.2";
pub const version = "1.0.0-beta.3";

// #region Defaults

Expand Down

0 comments on commit 7013702

Please sign in to comment.