Skip to content

Commit 1a3c199

Browse files
committed
Prepare v1.0.0
1 parent 4783a3a commit 1a3c199

File tree

7 files changed

+13
-8
lines changed

7 files changed

+13
-8
lines changed

Diff for: CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## [Unreleased]
22

3+
## [1.0.0] - 2022-01-02
4+
5+
### Add
6+
- Support 1.0.0 dbt
7+
38
## [0.21.1] - 2022-01-01
49

510
### Add
@@ -74,7 +79,8 @@
7479

7580
Init relaase
7681

77-
[Unreleased]: https://github.com/silentsokolov/dbt-clickhouse/compare/v0.21.1...HEAD
82+
[Unreleased]: https://github.com/silentsokolov/dbt-clickhouse/compare/v1.0.0...HEAD
83+
[0.21.1]: https://github.com/silentsokolov/dbt-clickhouse/compare/v0.21.1...v1.0.0
7884
[0.21.1]: https://github.com/silentsokolov/dbt-clickhouse/compare/v0.21.0...v0.21.1
7985
[0.21.0]: https://github.com/silentsokolov/dbt-clickhouse/compare/v0.20.2...v0.21.0
8086
[0.20.2]: https://github.com/silentsokolov/dbt-clickhouse/compare/v0.20.1...v0.20.2

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<p align="center">
2-
<img src="https://raw.githubusercontent.com/silentsokolov/dbt-clickhouse/master/etc/dbt-logo-full.svg" alt="dbt logo" width="300"/>
2+
<img src="https://raw.githubusercontent.com/silentsokolov/dbt-clickhouse/master/etc/chdbt.png" alt="clickhouse dbt logo" width="300"/>
33
</p>
44

55
[![build](https://github.com/silentsokolov/dbt-clickhouse/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/silentsokolov/dbt-clickhouse/actions/workflows/build.yml)

Diff for: dbt/adapters/clickhouse/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = '0.21.1'
1+
version = '1.0.0'

Diff for: dev_requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
dbt-core==0.21.1
1+
dbt-core==1.0.0
22
clickhouse-driver==0.2.2
33
pytest==6.0.2
4-
pytest-dbt-adapter==0.5.1
4+
pytest-dbt-adapter==0.6.0

Diff for: etc/chdbt.png

23.5 KB
Loading

Diff for: etc/dbt-logo-full.svg

-1
This file was deleted.

Diff for: setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def _dbt_clickhouse_version():
2828
package_version = _dbt_clickhouse_version()
2929
description = '''The Clickhouse plugin for dbt (data build tool)'''
3030

31-
dbt_version = '0.21.1'
31+
dbt_version = '1.0.0'
3232

3333
if not package_version.startswith(dbt_version):
3434
raise ValueError(
@@ -60,7 +60,7 @@ def _dbt_clickhouse_version():
6060
},
6161
install_requires=[
6262
f'dbt-core=={dbt_version}',
63-
'clickhouse-driver>=0.2.1',
63+
'clickhouse-driver>=0.2.2',
6464
],
6565
python_requires=">=3.6",
6666
platforms='any',

0 commit comments

Comments
 (0)