Skip to content

Commit ebf2fb1

Browse files
committed
48 | Migrate methods from camel to snake case
1 parent d4f0db4 commit ebf2fb1

File tree

110 files changed

+1208
-547
lines changed

Some content is hidden

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

110 files changed

+1208
-547
lines changed

docs/source/changelog.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@ Changelog
33

44
All notable changes to this project will be documented in this file.
55

6+
[0.5.3] - 2025-04-28
7+
--------------------
8+
9+
Changed
10+
^^^^^^^
11+
- Migrated methods from camel to snake case
12+
13+
614
[0.5.2] - 2025-04-27
715
--------------------
816

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project = "flask-inputfilter"
22
copyright = "2025, Leander Cain Slotosch"
33
author = "Leander Cain Slotosch"
4-
release = "0.5.2"
4+
release = "0.5.3"
55

66
extensions = ["sphinx_rtd_theme", "sphinx_design"]
77

env_configs/env.Dockerfile

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,23 @@ RUN apt-get update \
2424
wget \
2525
xz-utils \
2626
zlib1g-dev \
27-
&& apt-get clean
28-
29-
RUN curl https://pyenv.run | bash
27+
&& apt-get clean \
28+
&& curl https://pyenv.run | bash
3029

3130
ENV PATH="/root/.pyenv/bin:/root/.pyenv/shims:/root/.pyenv/versions/3.7.12/bin:$PATH"
3231
RUN echo 'export PATH="/root/.pyenv/bin:$PATH"' >> ~/.bashrc \
3332
&& echo 'eval "$(pyenv init --path)"' >> ~/.bashrc \
3433
&& echo 'eval "$(pyenv init -)"' >> ~/.bashrc \
35-
&& echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bashrc
36-
37-
RUN /root/.pyenv/bin/pyenv install 3.7.12
38-
RUN /root/.pyenv/bin/pyenv install 3.8.12
39-
RUN /root/.pyenv/bin/pyenv install 3.9.7
40-
RUN /root/.pyenv/bin/pyenv install 3.10.2
41-
RUN /root/.pyenv/bin/pyenv install 3.11.0
42-
RUN /root/.pyenv/bin/pyenv install 3.12.0
43-
RUN /root/.pyenv/bin/pyenv install 3.13.0
44-
RUN /root/.pyenv/bin/pyenv install 3.14-dev
45-
46-
RUN /root/.pyenv/bin/pyenv global 3.7.12 3.8.12 3.9.7 3.10.2 3.11.0 3.12.0 3.13.0 3.14-dev
34+
&& echo 'eval "$(pyenv virtualenv-init -)"' >> ~/.bashrc \
35+
&& /root/.pyenv/bin/pyenv install 3.7.12 \
36+
&& /root/.pyenv/bin/pyenv install 3.8.12 \
37+
&& /root/.pyenv/bin/pyenv install 3.9.7 \
38+
&& /root/.pyenv/bin/pyenv install 3.10.2 \
39+
&& /root/.pyenv/bin/pyenv install 3.11.0 \
40+
&& /root/.pyenv/bin/pyenv install 3.12.0 \
41+
&& /root/.pyenv/bin/pyenv install 3.13.0 \
42+
&& /root/.pyenv/bin/pyenv install 3.14-dev \
43+
&& /root/.pyenv/bin/pyenv global 3.7.12 3.8.12 3.9.7 3.10.2 3.11.0 3.12.0 3.13.0 3.14-dev
4744

4845
COPY pyproject.toml /app
4946

0 commit comments

Comments
 (0)