diff --git a/database/init/02-yaci-store-tables.sql b/database/init/02-yaci-store-tables.sql index e4533cd..6027463 100644 --- a/database/init/02-yaci-store-tables.sql +++ b/database/init/02-yaci-store-tables.sql @@ -1,5 +1,5 @@ -- YACI Store Schema for PostgreSQL --- Combined from YACI Store 2.0.0-beta5 migration files +-- Combined from YACI Store 2.0.0 migration files -- This schema is run before the application starts to create all required tables -- ===================================================== diff --git a/dev.sh b/dev.sh index 2500837..3aecc9d 100755 --- a/dev.sh +++ b/dev.sh @@ -60,9 +60,8 @@ JAR_FILE=$(find indexer -name "yaci-store*.jar" -type f 2>/dev/null | head -1) if [ -z "$JAR_FILE" ]; then print_warning "YACI Store JAR file not found in indexer/ directory" print_info "To download:" - print_info " 1. Visit https://github.com/bloxbean/yaci-store/releases" - print_info " 2. Download yaci-store.jar or yaci-store-all-*.jar" - print_info " 3. Place it in the indexer/ directory" + print_info " Visit https://github.com/bloxbean/yaci-store/releases" + print_info " or use /indexer/download-jar.sh" INDEXER_AVAILABLE=false else print_success "YACI Store JAR found: $JAR_FILE" diff --git a/docker-compose.yml b/docker-compose.yml index 028b4a0..1ab4949 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -30,7 +30,7 @@ services: - administration-network indexer: - image: bloxbean/yaci-store:2.0.0-beta5 + image: bloxbean/yaci-store:2.0.0 container_name: administration-indexer depends_on: postgres: diff --git a/indexer/Dockerfile.render b/indexer/Dockerfile.render index 88810c3..987a3da 100644 --- a/indexer/Dockerfile.render +++ b/indexer/Dockerfile.render @@ -1,5 +1,5 @@ # Render-compatible Dockerfile for YACI Store Indexer -FROM bloxbean/yaci-store:2.0.0-beta5 +FROM bloxbean/yaci-store:2.0.0 USER root diff --git a/indexer/README.md b/indexer/README.md index 6c8c377..3932cec 100644 --- a/indexer/README.md +++ b/indexer/README.md @@ -185,7 +185,7 @@ ORDER BY slot DESC LIMIT 10; The indexer uses the official YACI Store Docker image: ```yaml -image: bloxbean/yaci-store:2.0.0-beta5 +image: bloxbean/yaci-store:2.0.0 ``` Configuration is mounted at `/app/config/application.properties`. diff --git a/indexer/SETUP.md b/indexer/SETUP.md index 84b78ee..b3d2dde 100644 --- a/indexer/SETUP.md +++ b/indexer/SETUP.md @@ -10,12 +10,12 @@ The YACI Store JAR file needs to be downloaded manually: 1. Visit https://github.com/bloxbean/yaci-store/releases -2. Download the latest `yaci-store-all-*.jar` file (e.g., `yaci-store-all-2.0.0-beta5.jar`) +2. Download the latest `yaci-store-all-*.jar` file (e.g., `yaci-store-all-2.0.0.jar`) 3. Place it in the `indexer/` directory Alternatively, you can try the download script: ```bash -./download-jar.sh 2.0.0-beta5 +./download-jar.sh 2.0.0 ``` Note: The script may fail if the release tag format is different. In that case, download manually. diff --git a/indexer/download-jar.sh b/indexer/download-jar.sh index 194790b..dceaae6 100755 --- a/indexer/download-jar.sh +++ b/indexer/download-jar.sh @@ -5,7 +5,7 @@ set -e -VERSION=${1:-"2.0.0-beta5"} +VERSION=${1:-"2.0.0"} ZIP_FILE="yaci-store-${VERSION}.zip" JAR_FILE="yaci-store.jar" diff --git a/indexer/init-schema.sql b/indexer/init-schema.sql index e4533cd..6027463 100644 --- a/indexer/init-schema.sql +++ b/indexer/init-schema.sql @@ -1,5 +1,5 @@ -- YACI Store Schema for PostgreSQL --- Combined from YACI Store 2.0.0-beta5 migration files +-- Combined from YACI Store 2.0.0 migration files -- This schema is run before the application starts to create all required tables -- ===================================================== diff --git a/indexer/logs/yaci-store.log.2026-01-28.0.gz b/indexer/logs/yaci-store.log.2026-01-28.0.gz deleted file mode 100644 index f0cbfc7..0000000 Binary files a/indexer/logs/yaci-store.log.2026-01-28.0.gz and /dev/null differ