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

Fix references after changing repo name to dbt-flink-adapter #47

Merged
merged 1 commit into from
Jan 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
Fix references after changing repo name to dbt-flink-adapter
  • Loading branch information
grzegorz-liter-getindata committed Jan 31, 2023
commit 19e7035ad6ecbecd937ec7eb8ee64b7dd41e44aa
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

## [1.3.6] - 2023-01-31

- [#44](https://github.com/getindata/flink-dbt-adapter/issues/44) Add possibility to extract default connector properties to dbt_project.yml
- [#44](https://github.com/getindata/dbt-flink-adapter/issues/44) Add possibility to extract default connector properties to dbt_project.yml

## [1.3.5] - 2023-01-21

- Changelog added
- Implement handling for dbt test in streaming cases.

[Unreleased]: https://github.com/getindata/flink-dbt-adapter/compare/1.3.6...HEAD
[Unreleased]: https://github.com/getindata/dbt-flink-adapter/compare/1.3.6...HEAD

[1.3.6]: https://github.com/getindata/flink-dbt-adapter/compare/1.3.5...1.3.6
[1.3.6]: https://github.com/getindata/dbt-flink-adapter/compare/1.3.5...1.3.6

[1.3.5]: https://github.com/getindata/flink-dbt-adapter/compare/ddca7b02225a4ecc774e36e3e002fb74544b28f3...1.3.5
[1.3.5]: https://github.com/getindata/dbt-flink-adapter/compare/ddca7b02225a4ecc774e36e3e002fb74544b28f3...1.3.5
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Flink dbt Adapter
# dbt Flink Adapter

[![Python Version](https://img.shields.io/badge/python-3.8-blue.svg)](https://github.com/getindata/doge-datagen)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![SemVer](https://img.shields.io/badge/semver-2.0.0-green)](https://semver.org/)
[![PyPI version](https://badge.fury.io/py/dbt-flink-adapter.svg)](https://badge.fury.io/py/dbt-flink-adapter)
[![Downloads](https://pepy.tech/badge/dbt-flink-adapter)](https://pepy.tech/badge/dbt-flink-adapter)

This is an MVP of Flink DBT Adapter. It allows materializing of dbt models as Flink cluster streaming pipelines and batch jobs.
This is an MVP of dbt Flink Adapter. It allows materializing of dbt models as Flink cluster streaming pipelines and batch jobs.

## Prerequisites

Expand Down Expand Up @@ -275,9 +275,9 @@ Session handler is stored in `~/.dbt/flink-session.yml` file, if you want to for

## Releasing

To release new version first execute [prepare-release](https://github.com/getindata/flink-dbt-adapter/actions/workflows/prepare-release.yml) action.
To release new version first execute [prepare-release](https://github.com/getindata/dbt-flink-adapter/actions/workflows/prepare-release.yml) action.
Please keep in mind that major and minor version have to be exactly the same as major and minor version of dbt-core.

This action will create a release branch with bumped version and changelog prepared for release. It will also open a Pull Request to main branch if everything is ok with it - merge it.

Next execute [publish](https://github.com/getindata/flink-dbt-adapter/actions/workflows/publish.yml) on branch that was just created by prepare-release action.
Next execute [publish](https://github.com/getindata/dbt-flink-adapter/actions/workflows/publish.yml) on branch that was just created by prepare-release action.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def _get_dbt_core_version():
long_description_content_type="text/markdown",
author="GetInData",
author_email="[email protected]",
url="https://github.com/getindata/flink-dbt-adapter",
url="https://github.com/getindata/dbt-flink-adapter",
packages=find_namespace_packages(include=["dbt", "dbt.*", "flink", "flink.*"]),
include_package_data=True,
install_requires=[
Expand Down