Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bumped version to 3.0.1 #1798

Merged
merged 3 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Bumped version to 3.0.1
Updated dataform core package to include data preparation proto.
  • Loading branch information
fernst committed Aug 6, 2024
commit 79fa357bb21af40fc8f87776d5a5bc9e13726dcc
15 changes: 10 additions & 5 deletions packages/@dataform/core/BUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
load("//tools:ts_library.bzl", "ts_library")
load("@build_bazel_rules_nodejs//:index.bzl", "npm_package_bin")
load("@npm//webpack:index.bzl", "webpack")
load("//:version.bzl", "DF_VERSION")
load("//packages:index.bzl", "add_license_header_to_file", "pkg_bundle", "pkg_bundle_dts", "pkg_json", "pkg_npm_tar")
load("//tools:ts_library.bzl", "ts_library")
load("//tools/common:copy.bzl", "copy_file")

package(default_visibility = ["//visibility:public"])
Expand All @@ -13,8 +15,6 @@ ts_library(
],
)

load("@npm//webpack:index.bzl", "webpack")

webpack(
name = "bundler",
data = [
Expand All @@ -24,8 +24,6 @@ webpack(
],
)

load("@build_bazel_rules_nodejs//:index.bzl", "npm_package_bin")

npm_package_bin(
name = "bundle",
outs = [
Expand Down Expand Up @@ -67,6 +65,12 @@ add_license_header_to_file(
to_file = "configs.proto",
)

add_license_header_to_file(
name = "data_preparation_proto_with_license",
from_file = "//protos:data_preparation.proto",
to_file = "data_preparation.proto",
)

add_license_header_to_file(
name = "bundle_with_license",
from_file = "bundle",
Expand Down Expand Up @@ -95,6 +99,7 @@ pkg_npm_tar(
":bundle_with_license",
":configs_proto_with_license",
":core_proto_with_license",
":data_preparation_proto_with_license",
":package.json",
],
)
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# NOTE: If you change the format of this line, you must change the bash command
# in /scripts/publish to extract the version string correctly.
DF_VERSION = "3.0.0"
DF_VERSION = "3.0.1"