Skip to content

Commit

Permalink
upgrade version to 3.6.1 version
Browse files Browse the repository at this point in the history
  • Loading branch information
Release Bot committed Aug 8, 2023
1 parent 656e8ff commit 7426c12
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [v3.6.1](https://github.com/bancolombia/scaffold-clean-architecture/tree/v3.6.1) (2023-08-01)

[Full Changelog](https://github.com/bancolombia/scaffold-clean-architecture/compare/v3.6.0...v3.6.1)

**Closed issues:**

- aws s3 driven adapter, generates a OOM when reading a file big enough. [\#374](https://github.com/bancolombia/scaffold-clean-architecture/issues/374)

**Merged pull requests:**

- Feature/eda [\#383](https://github.com/bancolombia/scaffold-clean-architecture/pull/383) ([juancgalvis](https://github.com/juancgalvis))
- Fix downloading files from S3. [\#381](https://github.com/bancolombia/scaffold-clean-architecture/pull/381) ([gabheadz](https://github.com/gabheadz))

## [v3.6.0](https://github.com/bancolombia/scaffold-clean-architecture/tree/v3.6.0) (2023-07-18)

[Full Changelog](https://github.com/bancolombia/scaffold-clean-architecture/compare/v3.5.0...v3.6.0)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,27 +33,27 @@ To use the [plugin](https://plugins.gradle.org/plugin/co.com.bancolombia.cleanAr

```groovy
plugins {
id "co.com.bancolombia.cleanArchitecture" version "3.6.0"
id "co.com.bancolombia.cleanArchitecture" version "3.6.1"
}
```
Or if is a new project execute this script in the root directory of your project.
```sh
echo "plugins {
id \"co.com.bancolombia.cleanArchitecture\" version \"3.6.0\"
id \"co.com.bancolombia.cleanArchitecture\" version \"3.6.1\"
}" > build.gradle
```

To use the [plugin](https://plugins.gradle.org/plugin/co.com.bancolombia.cleanArchitecture) you need Gradle version 6.9 or later, to start add the following section into your **build.gradle.kts** file.

```kotlin dls
plugins {
id("co.com.bancolombia.cleanArchitecture") version "3.6.0"
id("co.com.bancolombia.cleanArchitecture") version "3.6.1"
}
```
Or if is a new project execute this script in the root directory of your project.
```sh
echo "plugins {
id(\"co.com.bancolombia.cleanArchitecture\") version \"3.6.0\"
id(\"co.com.bancolombia.cleanArchitecture\") version \"3.6.1\"
}" > build.gradle.kts
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package=co.com.bancolombia
systemProp.version=3.6.0
systemProp.version=3.6.1
simulateRest=true

2 changes: 1 addition & 1 deletion src/main/java/co/com/bancolombia/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Constants {
public static final String RCOMMONS_ASYNC_COMMONS_STARTER_VERSION = "2.0.1";
public static final String RCOMMONS_OBJECT_MAPPER_VERSION = "0.1.0";
public static final String BLOCK_HOUND_VERSION = "1.0.8.RELEASE";
public static final String PLUGIN_VERSION = "3.6.0";
public static final String PLUGIN_VERSION = "3.6.1";
public static final String GRADLE_WRAPPER_VERSION = "8.1.1";
public static final String KOTLIN_VERSION = "1.6.10";
public static final String AWS_BOM_VERSION = "2.20.94";
Expand Down

0 comments on commit 7426c12

Please sign in to comment.