Skip to content

Commit 4fc3316

Browse files
authored
Merge pull request #2217 from MODFLOW-USGS/post-release-6.6.1-reset
Post release 6.6.1 reset
2 parents 26a6122 + 14ec3a5 commit 4fc3316

File tree

10 files changed

+15
-15
lines changed

10 files changed

+15
-15
lines changed

.build_rtd_docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ PROJECT_NAME = "MODFLOW 6"
3737
# could be handy for archiving the generated documentation or if some version
3838
# control system is used.
3939

40-
PROJECT_NUMBER = "version 6.7.0.dev0"
40+
PROJECT_NUMBER = "version 6.7.0.dev1"
4141

4242
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4343
# for a project that appears at the top of each page and should give viewer a

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cff-version: 1.2.0
22
message: If you use this software, please cite the software itself.
33
type: software
44
title: MODFLOW 6 Modular Hydrologic Model
5-
version: 6.7.0.dev0
6-
date-released: '2024-12-19'
5+
version: 6.7.0.dev1
6+
date-released: '2025-02-10'
77
doi: 10.5066/F76Q1VQV
88
abstract: MODFLOW 6 is an object-oriented program and framework developed to provide
99
a platform for supporting multiple models and multiple types of models within the

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
This is the development repository for the USGS MODFLOW 6 Hydrologic Model. The official USGS distribution is available at [USGS Release Page](https://water.usgs.gov/ogw/modflow/MODFLOW.html).
55

6-
### Version 6.7.0.dev0 (preliminary)
6+
### Version 6.7.0.dev1 (preliminary)
77

88
[![GitHub release](https://img.shields.io/github/release/MODFLOW-USGS/modflow6.svg)](https://github.com/MODFLOW-USGS/modflow6/releases/latest)
99
[![MODFLOW 6 continuous integration](https://github.com/MODFLOW-USGS/modflow6/actions/workflows/ci.yml/badge.svg)](https://github.com/MODFLOW-USGS/modflow6/actions/workflows/ci.yml)

code.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@
1818
"email": "[email protected]"
1919
},
2020
"laborHours": -1,
21-
"version": "6.7.0.dev0",
21+
"version": "6.7.0.dev1",
2222
"date": {
23-
"metadataLastUpdated": "2024-12-19"
23+
"metadataLastUpdated": "2025-02-10"
2424
},
2525
"organization": "U.S. Geological Survey",
2626
"permissions": {

doc/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# MODFLOW 6 version file automatically created using...update_version.py
2-
# created on...December 19, 2024 20:40:15
3-
__version__ = "6.7.0.dev0"
2+
# created on...February 10, 2025 20:19:09
3+
__version__ = "6.7.0.dev1"

doc/version.tex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
\newcommand{\modflowversion}{mf6.7.0.dev0}
2-
\newcommand{\modflowdate}{December 19, 2024}
1+
\newcommand{\modflowversion}{mf6.7.0.dev1}
2+
\newcommand{\modflowdate}{February 10, 2025}
33
\newcommand{\currentmodflowversion}{Version \modflowversion---\modflowdate}

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'MODFLOW 6',
33
'fortran',
4-
version: '6.7.0.dev0',
4+
version: '6.7.0.dev1',
55
license: 'CC0',
66
meson_version: '>= 1.1.0',
77
default_options : [

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "modflow6"
33
channels = ["conda-forge"]
44
platforms = ["win-64", "linux-64", "linux-aarch64", "osx-arm64", "osx-64"]
5-
version = "6.7.0.dev0"
5+
version = "6.7.0.dev1"
66

77
[dependencies]
88
appdirs = "*"

src/Utilities/version.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ module VersionModule
1717
public
1818
! -- modflow 6 version
1919
integer(I4B), parameter :: IDEVELOPMODE = 1
20-
character(len=*), parameter :: VERSIONNUMBER = '6.7.0.dev0'
21-
character(len=*), parameter :: VERSIONTAG = ' (preliminary) 12/19/2024'
20+
character(len=*), parameter :: VERSIONNUMBER = '6.7.0.dev1'
21+
character(len=*), parameter :: VERSIONTAG = ' (preliminary) 02/10/2025'
2222
character(len=40), parameter :: VERSION = VERSIONNUMBER//VERSIONTAG
2323
character(len=2), parameter :: MFVNAM = ' 6'
2424
character(len=*), parameter :: MFTITLE = &

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.7.0.dev0
1+
6.7.0.dev1

0 commit comments

Comments
 (0)