File tree Expand file tree Collapse file tree 11 files changed +27
-15
lines changed Expand file tree Collapse file tree 11 files changed +27
-15
lines changed Original file line number Diff line number Diff line change 22
33## [ Unreleased]  
44
5+ ## [ 6.1.0]  - 2025-10-30 
6+ 
57### Fixed  
68
79-  fixed typing of base_model and mixins parameters ([ #852  ] ( https://github.com/stac-utils/stac-fastapi/pull/852 ) )
@@ -664,7 +666,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha
664666
665667*  First PyPi release!
666668
667- [ Unreleased ] : < https://github.com/stac-utils/stac-fastapi/compare/6.0.0..main > 
669+ [ Unreleased ] : < https://github.com/stac-utils/stac-fastapi/compare/6.1.0..main > 
670+ [ 6.1.0 ] : < https://github.com/stac-utils/stac-fastapi/compare/6.0.0..6.1.0 > 
668671[ 6.0.0 ] : < https://github.com/stac-utils/stac-fastapi/compare/5.2.1..6.0.0 > 
669672[ 5.2.1 ] : < https://github.com/stac-utils/stac-fastapi/compare/5.2.0..5.2.1 > 
670673[ 5.2.0 ] : < https://github.com/stac-utils/stac-fastapi/compare/5.1.1..5.2.0 > 
Original file line number Diff line number Diff line change 1- 6.0 .0
1+ 6.1 .0
Original file line number Diff line number Diff line change 11[project ]
22name  = " stac-fastapi" 
3- version  = " 6.0 .0" 
3+ version  = " 6.1 .0" 
44description  = " Python library for building a STAC-compliant FastAPI application." 
55requires-python  = " >=3.9" 
66readme  = " README.md" 
@@ -23,6 +23,12 @@ members = [
2323  " stac_fastapi/*" 
2424]
2525
26+ [[tool .uv .index ]]
27+ name  = " testpypi" 
28+ url  = " https://test.pypi.org/simple/" 
29+ publish-url  = " https://test.pypi.org/legacy/" 
30+ explicit  = true 
31+ 
2632[dependency-groups ]
2733dev  = [
2834    " pytest"  ,
@@ -75,7 +81,7 @@ explicit_package_bases = true
7581exclude  = [" tests"  , " .venv"  ]
7682
7783[tool .bumpversion ]
78- current_version  = " 6.0 .0" 
84+ current_version  = " 6.1 .0" 
7985parse  = """ (?x)
8086    (?P<major>\\ d+)\\ . 
8187    (?P<minor>\\ d+)\\ . 
@@ -107,7 +113,7 @@ search = "{current_version}"
107113replace  = " {new_version}" 
108114
109115[[tool .bumpversion .files ]]
110- filename  = " stac_fastapi/ pyproject.toml" 
116+ filename  = " pyproject.toml" 
111117search  = ' version = "{current_version}"' 
112118replace  = ' version = "{new_version}"' 
113119
Original file line number Diff line number Diff line change 3838        ;;
3939
4040        --test)
41-         TEST_PYPI=" --repository  testpypi" 
41+         TEST_PYPI=" --index  testpypi" 
4242        shift 
4343        ;;
4444
@@ -61,7 +61,7 @@ if [ "${BASH_SOURCE[0]}" = "${0}" ]; then
6161    do 
6262        echo  ${PACKAGE_DIR} 
6363        rm -rf dist
64-         uv build --package PACKAGE_DIR
65-         uv publish --publish-url  ${TEST_PYPI} 
64+         uv build --package ${ PACKAGE_DIR} 
65+         uv publish ${TEST_PYPI} 
6666    done 
6767fi 
Original file line number Diff line number Diff line change @@ -28,12 +28,13 @@ classifiers = [
2828    " Programming Language :: Python :: 3.11"  ,
2929    " Programming Language :: Python :: 3.12"  ,
3030    " Programming Language :: Python :: 3.13"  ,
31+     " Programming Language :: Python :: 3.14"  ,
3132    " License :: OSI Approved :: MIT License"  ,
3233]
3334dynamic  = [" version"  ]
3435dependencies  = [
3536    " brotli_asgi"  ,
36-     " stac-fastapi.types~=6.0 "  ,
37+     " stac-fastapi.types~=6.1 "  ,
3738]
3839
3940[dependency-groups ]
Original file line number Diff line number Diff line change 11"""Library version.""" 
22
3- __version__  =  "6.0 .0" 
3+ __version__  =  "6.1 .0" 
Original file line number Diff line number Diff line change @@ -29,12 +29,13 @@ classifiers = [
2929    " Programming Language :: Python :: 3.11"  ,
3030    " Programming Language :: Python :: 3.12"  ,
3131    " Programming Language :: Python :: 3.13"  ,
32+     " Programming Language :: Python :: 3.14"  ,
3233    " License :: OSI Approved :: MIT License"  ,
3334]
3435dynamic  = [" version"  ]
3536dependencies  = [
36-     " stac-fastapi.types~=6.0 "  ,
37-     " stac-fastapi.api~=6.0 "  ,
37+     " stac-fastapi.types~=6.1 "  ,
38+     " stac-fastapi.api~=6.1 "  ,
3839]
3940
4041[dependency-groups ]
Original file line number Diff line number Diff line change 11"""Library version.""" 
22
3- __version__  =  "6.0 .0" 
3+ __version__  =  "6.1 .0" 
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ classifiers = [
2828  " Programming Language :: Python :: 3.11"  ,
2929  " Programming Language :: Python :: 3.12"  ,
3030  " Programming Language :: Python :: 3.13"  ,
31+   " Programming Language :: Python :: 3.14"  ,
3132  " License :: OSI Approved :: MIT License"  ,
3233]
3334dynamic  = [" version"  ]
Original file line number Diff line number Diff line change 11"""Library version.""" 
22
3- __version__  =  "6.0 .0" 
3+ __version__  =  "6.1 .0" 
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments