Skip to content

Commit 3bbafab

Browse files
committed
Rename project from chex to natch
Renamed project from chex to natch as the original name was taken on hex.pm. Updated all references including module names, file paths, variable names, environment variables (CHEX_BUILD -> NATCH_BUILD), and documentation.
1 parent 6ad66db commit 3bbafab

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+757
-757
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,13 +103,13 @@ jobs:
103103
submodules: recursive
104104

105105
- name: Build Docker image for valgrind
106-
run: docker build -f Dockerfile.valgrind -t chex-valgrind .
106+
run: docker build -f Dockerfile.valgrind -t natch-valgrind .
107107

108108
- name: Run valgrind tests
109109
run: |
110110
docker run --rm \
111111
--network host \
112-
chex-valgrind 2>&1 | tee valgrind_output.txt
112+
natch-valgrind 2>&1 | tee valgrind_output.txt
113113
114114
- name: Check for memory leaks
115115
run: |

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ erl_crash.dump
1717
*.ez
1818

1919
# Ignore package tarball (built via "mix hex.build").
20-
chex-*.tar
20+
natch-*.tar
2121

2222
# Temporary files, for example, from tests.
2323
/tmp/
2424

2525
# NIF build artifacts
26-
/native/chex_fine/_build/
26+
/native/natch_fine/_build/
2727
/priv/*.so
2828
/priv/*.dylib
2929

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4040
- Simple query execution
4141
- Basic type support
4242

43-
[0.2.0]: https://github.com/Intellection/chex/releases/tag/v0.2.0
44-
[0.1.0]: https://github.com/Intellection/chex/releases/tag/v0.1.0
43+
[0.2.0]: https://github.com/Intellection/natch/releases/tag/v0.2.0
44+
[0.1.0]: https://github.com/Intellection/natch/releases/tag/v0.1.0

Dockerfile.valgrind

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ RUN mix deps.get
2626
COPY . .
2727

2828
# Clean any macOS build artifacts
29-
RUN rm -rf native/chex_fine/_build priv/*.so _build
29+
RUN rm -rf native/natch_fine/_build priv/*.so _build
3030

3131
# Update tests to use CLICKHOUSE_HOST environment variable
3232
RUN find test -name "*.exs" -type f -exec sed -i 's/host: "localhost"/host: System.get_env("CLICKHOUSE_HOST", "localhost")/g' {} \;
@@ -35,7 +35,7 @@ RUN find test -name "*.exs" -type f -exec sed -i 's/host: "localhost"/host: Syst
3535
RUN mkdir -p /clickhouse-cpp && \
3636
cd /clickhouse-cpp && \
3737
git clone --depth 1 https://github.com/ClickHouse/clickhouse-cpp.git . && \
38-
sed -i 's|/Users/brendon/work/clickhouse-cpp|/clickhouse-cpp|g' /app/native/chex_fine/CMakeLists.txt
38+
sed -i 's|/Users/brendon/work/clickhouse-cpp|/clickhouse-cpp|g' /app/native/natch_fine/CMakeLists.txt
3939

4040
# Compile the project
4141
ENV MIX_ENV=test

0 commit comments

Comments
 (0)